Yeni Proje Kodları

This commit is contained in:
2026-01-03 14:20:27 +03:00
parent fe1916077b
commit 12f31c3633
26 changed files with 3196 additions and 671 deletions

View File

@@ -1,5 +1,7 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import { Geist, Geist_Mono, Inter, Outfit } from "next/font/google";
import { Navbar } from "@/components/layout/navbar";
import { Footer } from "@/components/layout/footer";
import "./globals.css";
const geistSans = Geist({
@@ -7,14 +9,12 @@ const geistSans = Geist({
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
const outfit = Outfit({ subsets: ["latin"], variable: "--font-outfit" });
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "ParaKasa - Premium Çelik Kasalar",
description: "Eviniz ve iş yeriniz için en yüksek güvenlikli çelik kasa ve para sayma çözümleri.",
};
export default function RootLayout({
@@ -23,11 +23,13 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang="en">
<html lang="tr">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
className={`${inter.className} ${outfit.variable} antialiased min-h-screen flex flex-col`}
>
{children}
<Navbar />
<main className="flex-1">{children}</main>
<Footer />
</body>
</html>
);