2025-10-02 18:10:07 -07:00
|
|
|
"use client";
|
|
|
|
|
|
2025-10-27 08:37:08 -07:00
|
|
|
import { FooterNew } from "@/components/homepage/footer-new";
|
2025-10-02 18:10:07 -07:00
|
|
|
import { Navbar } from "@/components/homepage/navbar";
|
|
|
|
|
|
|
|
|
|
export default function HomePageLayout({ children }: { children: React.ReactNode }) {
|
|
|
|
|
return (
|
2025-10-03 01:22:26 -07:00
|
|
|
<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">
|
2025-10-02 18:10:07 -07:00
|
|
|
<Navbar />
|
|
|
|
|
{children}
|
2025-10-27 08:37:08 -07:00
|
|
|
<FooterNew />
|
2025-10-02 18:10:07 -07:00
|
|
|
</main>
|
|
|
|
|
);
|
|
|
|
|
}
|