import type { Metadata } from "next"; import { Noto_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const notoSans = Noto_Sans({ variable: "--font-noto-sans", subsets: ["latin"], }); export const metadata: Metadata = { title: "TechFlow - Enterprise IT Solutions & Digital Transformation", description: "Transform your business with TechFlow's comprehensive IT solutions. Cloud infrastructure, cybersecurity, and digital transformation for enterprise clients.", keywords: ["IT solutions", "cloud computing", "cybersecurity", "digital transformation", "managed services", "enterprise software"], metadataBase: new URL("https://techflow.com"), alternates: { canonical: "https://techflow.com" }, openGraph: { title: "TechFlow - Enterprise IT Solutions", description: "Transform your business with cutting-edge IT solutions designed for growth and innovation", url: "https://techflow.com", siteName: "TechFlow", type: "website" }, twitter: { card: "summary_large_image", title: "TechFlow - Enterprise IT Solutions", description: "Comprehensive IT solutions for digital transformation" }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}