update redesign

This commit is contained in:
2026-06-24 18:31:06 +05:30
parent 6ddfc57217
commit d3c7d93cef
23 changed files with 1756 additions and 1518 deletions

View File

@@ -1,8 +1,6 @@
import type { Metadata, Viewport } from "next";
import { Jost } from "next/font/google";
import "./globals.css";
import { Navbar } from "@/components/layout/Navbar";
import { Footer } from "@/components/layout/Footer";
const jost = Jost({
subsets: ["latin"],
@@ -94,10 +92,8 @@ export default function RootLayout({
rel="stylesheet"
/>
</head>
<body className="bg-background text-on-surface font-body antialiased" suppressHydrationWarning>
<Navbar />
<main>{children}</main>
<Footer />
<body className="bg-[#E8DCF2] text-on-surface font-body antialiased" suppressHydrationWarning>
{children}
</body>
</html>
);