first commit

This commit is contained in:
mstfyldz
2026-03-24 15:46:27 +03:00
parent 095d830279
commit 34b6a46604
33 changed files with 5212 additions and 81 deletions

View File

@@ -1,5 +1,5 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import { Geist, Geist_Mono, Inter } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
@@ -12,9 +12,15 @@ const geistMono = 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: "Create Next App",
description: "Generated by create next app",
title: "AppAdmin - Merkezi Uygulama Yönetimi",
description: "Mobil uygulamalarınız için merkezi yönetim paneli",
};
export default function RootLayout({
@@ -24,10 +30,13 @@ export default function RootLayout({
}>) {
return (
<html
lang="en"
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
lang="tr"
className={`${geistSans.variable} ${geistMono.variable} ${inter.variable} h-full antialiased`}
suppressHydrationWarning
>
<body className="min-h-full flex flex-col">{children}</body>
<body className="min-h-full flex flex-col text-slate-900 dark:text-slate-100">
{children}
</body>
</html>
);
}