import type { Metadata } from "next"; import { Space_Grotesk } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const spaceGrotesk = Space_Grotesk({ variable: "--font-space-grotesk", subsets: ["latin"], }); export const metadata: Metadata = { title: "TechForward - Elegant Tech Solutions for Tomorrow", description: "Innovative tech startup delivering elegant, powerful solutions designed for tomorrow's digital world. Trusted by enterprise leaders.", keywords: "technology, innovation, startup, software solutions, digital transformation, enterprise tech", openGraph: { title: "TechForward - Building the Future", description: "Elegant, powerful tech solutions designed for tomorrow's digital world.", siteName: "TechForward", type: "website" }, twitter: { card: "summary_large_image", title: "TechForward - Innovation Made Simple", description: "Discover elegant tech solutions that drive real business results." }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}