34 lines
907 B
TypeScript
34 lines
907 B
TypeScript
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 "./globals.css";
|
|
|
|
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
const outfit = Outfit({ subsets: ["latin"], variable: "--font-outfit" });
|
|
|
|
export const metadata: Metadata = {
|
|
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({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="tr">
|
|
<body
|
|
className={`${inter.className} ${outfit.variable} antialiased min-h-screen flex flex-col`}
|
|
>
|
|
<Navbar />
|
|
<main className="flex-1">{children}</main>
|
|
<Footer />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|