update home page

This commit is contained in:
2026-06-18 16:32:31 +05:30
parent d9cc83aa82
commit 8e0d704438
57 changed files with 2813 additions and 301 deletions

View File

@@ -1,5 +1,6 @@
import type { Metadata } from "next";
import { Manrope, Sora, DM_Sans } from "next/font/google";
import { Footer } from "@/components/shared/Footer";
import "./globals.css";
const manrope = Manrope({
@@ -36,7 +37,10 @@ export default function RootLayout({
lang="en"
className={`${manrope.variable} ${sora.variable} ${dmSans.variable}`}
>
<body suppressHydrationWarning>{children}</body>
<body suppressHydrationWarning>
{children}
<Footer />
</body>
</html>
);
}