import type { Metadata } from "next"; import { Roboto } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const roboto = Roboto({ variable: "--font-roboto", subsets: ["latin"], weight: ["100", "300", "400", "500", "700", "900"], }); export const metadata: Metadata = { title: "TechVision | Enterprise IT Solutions & Services", description: "Leading IT solutions provider offering cloud, development, security, and consulting services to Fortune 500 companies and innovative startups.", keywords: "IT solutions, cloud services, software development, cybersecurity, digital transformation, enterprise technology", metadataBase: new URL('https://techvision.com'), alternates: { canonical: 'https://techvision.com' }, robots: { index: true, follow: true }, openGraph: { title: "TechVision | Enterprise IT Solutions & Services", description: "Transform your business with cutting-edge IT solutions designed for modern enterprises.", type: "website", siteName: "TechVision", images: [{ url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767778742833-mpsl09iv.jpg", alt: "TechVision IT Solutions" }] }, twitter: { card: "summary_large_image", title: "TechVision | Enterprise IT Solutions & Services", description: "Transform your business with cutting-edge IT solutions designed for modern enterprises.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767778742833-mpsl09iv.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}