import type { Metadata } from "next"; import { Lato } from "next/font/google"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const lato = Lato({ variable: "--font-lato", subsets: ["latin"], weight: ["100", "300", "400", "700", "900"], }); const halant = Halant({ variable: "--font-halant", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "CreativeFlow | Social Media Marketing Agency", description: "Turn your brand into a social phenomenon with viral content, engaged communities, and measurable growth strategies.", keywords: "social media marketing, content creation, social strategy, community management, digital marketing agency", metadataBase: new URL("https://creativeflow.io"), alternates: { canonical: "https://creativeflow.io"}, openGraph: { title: "CreativeFlow | Social Media Marketing Agency", description: "We create viral content, build engaged communities, and drive measurable growth across all social platforms.", url: "https://creativeflow.io", siteName: "CreativeFlow", type: "website", images: [ { url: "http://img.b2bpic.net/free-vector/template-smart-home-management-app_52683-43328.jpg", alt: "CreativeFlow - Social Media Marketing"}, ], }, twitter: { card: "summary_large_image", title: "CreativeFlow | Social Media Marketing Agency", description: "We create viral content, build engaged communities, and drive measurable growth across all social platforms.", images: ["http://img.b2bpic.net/free-vector/template-smart-home-management-app_52683-43328.jpg"], }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}