Skip to content

Commit

Permalink
Merge pull request #569 from vitessio/fix-footer
Browse files Browse the repository at this point in the history
Fix footer
  • Loading branch information
frouioui authored Jul 15, 2024
2 parents ac7c561 + 57e93cd commit 73d4e3a
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions website/src/pages/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,13 @@ import { ThemeProvider } from "@/components/theme-provider";
const Layout = () => {
return (
<ThemeProvider defaultTheme="system" storageKey="vite-ui-theme">
<Navbar />
<Outlet />
<Footer />

<div className="flex flex-col min-h-screen">
<Navbar />
<div className="flex-1">
<Outlet />
</div>
<Footer />
</div>
<Modal />
</ThemeProvider>
);
Expand Down

0 comments on commit 73d4e3a

Please sign in to comment.