diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fd8b7fc..9578fab 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,29 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Source_Sans_3 } from "next/font/google"; +import { Playfair_Display, Inter } 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 playfairDisplay = Playfair_Display({ + variable: "--font-playfair-display", subsets: ["latin"], + weight: ["400", "500", "600", "700", "800", "900"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], -}); - export const metadata: Metadata = { - title: "Kalton Studio | Exceptional Design for Your Brand", description: "Award-winning creative design studio crafting stunning visual experiences, branding, and strategic designs that elevate businesses globally.", keywords: "design studio, branding, graphic design, creative agency, visual design, brand identity, portfolio", openGraph: { - title: "Kalton Studio | Exceptional Design for Your Brand", description: "Award-winning creative design studio crafting stunning visual experiences and strategic branding solutions.", siteName: "Kalton Studio", type: "website"}, - twitter: { - card: "summary_large_image", title: "Kalton Studio | Exceptional Design for Your Brand", description: "Award-winning creative design studio crafting stunning visual experiences and strategic branding solutions."}, - robots: { - index: true, - follow: true, - }, -}; + title: "Kalton Studio | Crafting Visual Stories That Feel Timeless", description: "Premium creative studio specializing in photography, brand visuals, creative direction, and content production."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +