diff --git a/apps/web/app/layout.tsx b/apps/web/app/layout.tsx index c9bf75b..6d6b191 100644 --- a/apps/web/app/layout.tsx +++ b/apps/web/app/layout.tsx @@ -13,6 +13,7 @@ import StyleSheetInitializer from "./stylesheet-initializer"; import { getServerColors } from "@/lib/getServerColors"; import { Analytics } from "@vercel/analytics/react"; +import SiteFooter from "@/components/core/site-footer"; const inter = Inter({ subsets: ["latin"], variable: "--font-inter" }); const comfortaa = Comfortaa({ @@ -68,6 +69,7 @@ export default async function RootLayout({ {children} + diff --git a/apps/web/components/core/site-footer.tsx b/apps/web/components/core/site-footer.tsx new file mode 100644 index 0000000..dd5228e --- /dev/null +++ b/apps/web/components/core/site-footer.tsx @@ -0,0 +1,76 @@ +import { Github, Youtube } from "lucide-react"; +import app from "../../../../package.json"; + +const navigation = [ + { + name: "GitHub", + href: "https://github.com/fluid-design-io/fluid-design", + icon: Github, + }, + { + name: "YouTube", + href: "https://youtube.com/@fluiddesign", + icon: Youtube, + }, +]; + +function SiteFooter() { + return ( + + ); +} + +export default SiteFooter;