diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a02a860..23e21ea 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -4,6 +4,7 @@ import { ThemeProvider } from "next-themes"; import "./globals.css"; import { NavTop } from "@/components/navtop"; +import { Footer } from "@/components/footer"; import { Toaster } from "@/components/ui/sonner"; import { Suspense } from "react"; @@ -34,11 +35,14 @@ export default function RootLayout({ className={`${geistSans.variable} ${geistMono.variable} antialiased`} > - - - -
{children}
-
+
+ + + +
{children}
+
+
diff --git a/src/app/os/layout.tsx b/src/app/os/layout.tsx index 98562f9..f775293 100644 --- a/src/app/os/layout.tsx +++ b/src/app/os/layout.tsx @@ -38,7 +38,7 @@ export default function OSDetailLayout({ }, [os]); return ( -
+
diff --git a/src/components/footer.tsx b/src/components/footer.tsx new file mode 100644 index 0000000..4534f08 --- /dev/null +++ b/src/components/footer.tsx @@ -0,0 +1,30 @@ +export function Footer() { + return ( + + ); +}