chore: suggested changes

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2025-10-27 08:37:08 -07:00
parent 6b88c920c3
commit 45f306d890
5 changed files with 202 additions and 14 deletions

View file

@ -1,6 +1,6 @@
"use client";
import { Footer } from "@/components/homepage/footer";
import { FooterNew } from "@/components/homepage/footer-new";
import { Navbar } from "@/components/homepage/navbar";
export default function HomePageLayout({ children }: { children: React.ReactNode }) {
@ -8,7 +8,7 @@ export default function HomePageLayout({ children }: { children: React.ReactNode
<main className="min-h-screen bg-gradient-to-b from-gray-50 to-gray-100 text-gray-900 dark:from-black dark:to-gray-900 dark:text-white overflow-x-hidden">
<Navbar />
{children}
<Footer />
<FooterNew />
</main>
);
}