mirror of
https://github.com/GithubOrgProjectPiza/frontend.git
synced 2026-09-04 00:26:05 +02:00
Fix Formatting
This commit is contained in:
+1
-2
@@ -1,14 +1,13 @@
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');
|
||||
@import url("https://fonts.googleapis.com/css2?family=Quicksand&display=swap");
|
||||
|
||||
@import url("https://fonts.googleapis.com/css2?family=Quicksand&display=swap");
|
||||
|
||||
.App {
|
||||
text-align: center;
|
||||
font-family: quicksand, arial;
|
||||
|
||||
}
|
||||
|
||||
.App-logo {
|
||||
|
||||
+9
-9
@@ -29,15 +29,15 @@ function App() {
|
||||
<div className="App">
|
||||
<QueryClientProvider client={queryClient}>
|
||||
<BrowserRouter>
|
||||
<Routes>
|
||||
<Route path="/" element={<MainPage />} />
|
||||
<Route path="endpage" element={<EndPage />} />
|
||||
<Route path="liste" element={<Listenansicht />} />
|
||||
<Route path="registrierung" element={<Registrierung />} />
|
||||
<Route path="anmeldung" element={<Anmeldepage />} />
|
||||
<Route path="warenkorb" element={<Warenkorb />} />
|
||||
</Routes>
|
||||
</BrowserRouter>
|
||||
<Routes>
|
||||
<Route path="/" element={<MainPage />} />
|
||||
<Route path="endpage" element={<EndPage />} />
|
||||
<Route path="liste" element={<Listenansicht />} />
|
||||
<Route path="registrierung" element={<Registrierung />} />
|
||||
<Route path="anmeldung" element={<Anmeldepage />} />
|
||||
<Route path="warenkorb" element={<Warenkorb />} />
|
||||
</Routes>
|
||||
</BrowserRouter>
|
||||
</QueryClientProvider>
|
||||
</div>
|
||||
);
|
||||
|
||||
@@ -40,7 +40,7 @@ function Listenansicht(props) {
|
||||
</div>
|
||||
{listen}
|
||||
<div class="flex justify-end ">
|
||||
<ButtonPrimary name="Restaurants"></ButtonPrimary>
|
||||
<ButtonPrimary name="Restaurants"></ButtonPrimary>
|
||||
<Link to="/warenkorb">
|
||||
<ButtonPrimary name="Warenkorb"></ButtonPrimary>
|
||||
</Link>
|
||||
|
||||
@@ -23,7 +23,9 @@ function MainPage() {
|
||||
return (
|
||||
<div>
|
||||
<Header1 />
|
||||
<div class="grid grid-cols-1 md:grid-cols-2 xl:grid-cols-4" href="/liste">{listen}</div>
|
||||
<div class="grid grid-cols-1 md:grid-cols-2 xl:grid-cols-4" href="/liste">
|
||||
{listen}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user