Site için geliştirmeler yapıldı.

This commit is contained in:
2026-01-06 23:45:38 +03:00
parent 96f195ffa6
commit 18023550e0
26 changed files with 971 additions and 56 deletions

View File

@@ -1,11 +1,8 @@
import type { Metadata } from "next";
import { Inter, Outfit } from "next/font/google";
import { Navbar } from "@/components/layout/navbar";
import { Footer } from "@/components/layout/footer";
import { Toaster } from "sonner";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
const outfit = Outfit({ subsets: ["latin"], variable: "--font-outfit" });
@@ -24,9 +21,8 @@ export default function RootLayout({
<body
className={`${inter.className} ${outfit.variable} antialiased min-h-screen flex flex-col`}
>
<Navbar />
<main className="flex-1">{children}</main>
<Footer />
{children}
<Toaster />
</body>
</html>
);