48 lines
1.1 KiB
TypeScript
48 lines
1.1 KiB
TypeScript
import type { Metadata } from "next";
|
||
import { Geist, Geist_Mono, Bebas_Neue, Oswald } from "next/font/google";
|
||
import "./globals.css";
|
||
import LayoutContent from "@/components/LayoutContent";
|
||
|
||
const geistSans = Geist({
|
||
variable: "--font-geist-sans",
|
||
subsets: ["latin"],
|
||
});
|
||
|
||
const geistMono = Geist_Mono({
|
||
variable: "--font-geist-mono",
|
||
subsets: ["latin"],
|
||
});
|
||
|
||
const bebasNeue = Bebas_Neue({
|
||
variable: "--font-bebas-neue",
|
||
weight: "400",
|
||
subsets: ["latin"],
|
||
});
|
||
|
||
const oswald = Oswald({
|
||
variable: "--font-oswald",
|
||
subsets: ["latin", "latin-ext"],
|
||
});
|
||
|
||
export const metadata: Metadata = {
|
||
title: "A.N.T ARCHITECTURE",
|
||
description: "Ayça Nur Turhan - Mimarlık ve Tasarım",
|
||
};
|
||
|
||
export default function RootLayout({
|
||
children,
|
||
}: Readonly<{
|
||
children: React.ReactNode;
|
||
}>) {
|
||
return (
|
||
<html
|
||
lang="tr"
|
||
className={`${geistSans.variable} ${geistMono.variable} ${bebasNeue.variable} ${oswald.variable} h-full antialiased`}
|
||
>
|
||
<body className="min-h-full flex flex-col bg-white">
|
||
<LayoutContent>{children}</LayoutContent>
|
||
</body>
|
||
</html>
|
||
);
|
||
}
|