güncelleme

This commit is contained in:
2026-01-29 16:49:51 +03:00
parent 10bfa3089e
commit 54113726f4
38 changed files with 1469 additions and 642 deletions

View File

@@ -2,6 +2,8 @@
import localFont from "next/font/local";
import { Toaster } from "sonner";
import "./globals.css";
import { ThemeProvider } from "@/components/theme-provider";
import { getSiteContents } from "@/lib/data";
const inter = localFont({
src: [
@@ -33,7 +35,6 @@ const outfit = localFont({
variable: "--font-outfit",
});
import { getSiteContents } from "@/lib/data";
export async function generateMetadata() {
const settings = await getSiteContents();
@@ -44,10 +45,6 @@ export async function generateMetadata() {
};
}
import { ThemeProvider } from "@/components/theme-provider"
// ... imports
export default function RootLayout({
children,
}: Readonly<{