diff --git a/apps/www/src/app/(app)/_components/site-footer.tsx b/apps/www/src/app/(app)/_components/site-footer.tsx new file mode 100644 index 0000000..c5c53b7 --- /dev/null +++ b/apps/www/src/app/(app)/_components/site-footer.tsx @@ -0,0 +1,31 @@ +import { siteUrls } from "@/config/urls"; + +export function SiteFooter() { + return ( + + ); +} diff --git a/apps/www/src/app/(app)/layout.tsx b/apps/www/src/app/(app)/layout.tsx index 7633523..34a12d0 100644 --- a/apps/www/src/app/(app)/layout.tsx +++ b/apps/www/src/app/(app)/layout.tsx @@ -1,4 +1,5 @@ import { SiteHeader } from "@/app/(app)/_components/side-header"; +import { SiteFooter } from "@/app/(app)/_components/site-footer"; interface AppLayoutProps { children: React.ReactNode; @@ -9,6 +10,7 @@ export default function AppLayout({ children }: AppLayoutProps) { <>
{children}
+ ); }