43 lines
1011 B
TypeScript
43 lines
1011 B
TypeScript
import type { Metadata } from "next";
|
||
import { Geist, Geist_Mono, Inter } from "next/font/google";
|
||
import "./globals.css";
|
||
|
||
const geistSans = Geist({
|
||
variable: "--font-geist-sans",
|
||
subsets: ["latin"],
|
||
});
|
||
|
||
const geistMono = Geist_Mono({
|
||
variable: "--font-geist-mono",
|
||
subsets: ["latin"],
|
||
});
|
||
|
||
const inter = Inter({
|
||
variable: "--font-inter",
|
||
subsets: ["latin"],
|
||
weight: ["300", "400", "500", "600", "700", "800", "900"],
|
||
});
|
||
|
||
export const metadata: Metadata = {
|
||
title: "AppAdmin - Merkezi Uygulama Yönetimi",
|
||
description: "Mobil uygulamalarınız için merkezi yönetim paneli",
|
||
};
|
||
|
||
export default function RootLayout({
|
||
children,
|
||
}: Readonly<{
|
||
children: React.ReactNode;
|
||
}>) {
|
||
return (
|
||
<html
|
||
lang="tr"
|
||
className={`${geistSans.variable} ${geistMono.variable} ${inter.variable} h-full antialiased`}
|
||
suppressHydrationWarning
|
||
>
|
||
<body className="min-h-full flex flex-col text-slate-900 dark:text-slate-100">
|
||
{children}
|
||
</body>
|
||
</html>
|
||
);
|
||
}
|