From c8986ee42004e30e3b4e5f43511b2f2bc566b1ff Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 01:43:37 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 37 +++++++++++++++++++++++++------------ 1 file changed, 25 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5887919..90f9aad 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,17 +1,16 @@ import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; -import "./globals.css"; +import { Inter } from "next/font/google"; +import "./styles/variables.css"; +import "./styles/base.css"; +import { ServiceWrapper } from "@/components/wrapper/ServiceWrapper"; +import { Tag } from "@/components/tag/Tag"; -const geist = 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"], }); export const metadata: Metadata = { - title: "Kanarya Diş Sağlığı", description: "Kanarya Ağız ve Diş Sağlığı Polikliniği - Güvenilir, Profesyonel Diş Hizmeti"}; + title: "Kanarya Ağız ve Diş Sağlığı Polikliniği", description: "Modern teknoloji ve deneyimli doktorlarla kaliteli diş sağlığı hizmeti. Kanarya'da güven, konfor ve uzmanlık."}; export default function RootLayout({ children, @@ -19,9 +18,23 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - - - {children} + + + + + {children} + +