diff --git a/app/(main)/footer.tsx b/app/(main)/footer.tsx new file mode 100644 index 0000000..a14f070 --- /dev/null +++ b/app/(main)/footer.tsx @@ -0,0 +1,22 @@ +export default function Footer() { + return ( + + ) +} diff --git a/app/(main)/layout.tsx b/app/(main)/layout.tsx index 19b2d6a..dcb0983 100644 --- a/app/(main)/layout.tsx +++ b/app/(main)/layout.tsx @@ -2,6 +2,7 @@ import React from "react"; import Header from "@/app/(main)/header"; import BlurLayers from "@/components/BlurLayer"; +import Footer from "./footer"; type DashboardProps = { children: React.ReactNode; @@ -12,9 +13,10 @@ export default function MainLayout({ children }: DashboardProps) {