Files
aycanurmimarl-k/app/layout.tsx
2026-04-13 00:49:59 +03:00

48 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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>
);
}