import type { Metadata } from "next"; import { Rubik } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const rubik = Rubik({ variable: "--font-rubik", subsets: ["latin"], }); export const metadata: Metadata = { title: "Creative Marketing Agency | Brand Strategy & Digital Marketing", description: "Award-winning marketing agency specializing in brand strategy, digital campaigns, and creative solutions. Transform your brand and drive growth with our expert team.", keywords: "marketing agency, brand strategy, digital marketing, advertising, creative services, brand design", robots: { index: true, follow: true }, openGraph: { title: "Creative Marketing Agency | Transform Your Brand", description: "Award-winning marketing agency specializing in brand strategy, digital campaigns, and creative solutions.", type: "website", siteName: "Creative Agency" }, twitter: { card: "summary_large_image", title: "Creative Marketing Agency", description: "Transform your brand with strategic marketing and creative excellence." } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}