diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6459b8e..8e44db6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,48 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Inter_Tight } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Beratlar Kapı ve Mobilya - Premium Interior Doors Istanbul", description: "Handcrafted premium interior doors and furniture refinishing in Istanbul. Quiet luxury with masterful craftsmanship. 4.8/5 rated. Custom designs available.", keywords: "interior doors, furniture refinishing, Istanbul, premium doors, handcrafted, custom design", openGraph: { - title: "Beratlar Kapı ve Mobilya - The Art of Doors", description: "Premium handcrafted interior doors and furniture refinishing from Istanbul", siteName: "Beratlar Kapı ve Mobilya", type: "website"}, - robots: { - index: true, - follow: true, - }, -}; + title: "Beratlar Kapı ve Mobilya - Premium Interior Doors & Furniture", description: "Handcrafted interior doors and furniture refinishing with meticulous attention to wood texture and quality finish. Experience quiet luxury and professional craftsmanship from Istanbul."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}