diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8e44db6..4bbbd7f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,8 +1,15 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; +import { Playfair_Display, Inter } from "next/font/google"; import "./globals.css"; -const inter = Inter({ subsets: ["latin"] }); +const playfairDisplay = Playfair_Display({ + variable: "--font-playfair-display", subsets: ["latin"], + weight: ["400", "500", "600", "700", "800", "900"], +}); + +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); export const metadata: Metadata = { 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."}; @@ -13,8 +20,8 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - -
{children} + + {children}