import type { Metadata } from "next"; import { Public_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); export const metadata: Metadata = { title: "TechVenture - Intelligent Software Solutions for Startups", description: "Transform your software development with TechVenture's scalable platform. Fast deployment, 24/7 support, and enterprise-grade security. Start free today.", keywords: "software development, SaaS platform, API, startup technology, cloud solutions, development platform", robots: { index: true, follow: true }, openGraph: { title: "TechVenture - Intelligent Software Solutions", description: "Build faster with TechVenture's powerful platform for modern development teams", type: "website", siteName: "TechVenture", images: [{ url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766402154996-hfblxpxy.jpg", alt: "TechVenture platform showcase" }] }, twitter: { card: "summary_large_image", title: "TechVenture - Intelligent Software Solutions", description: "Transform your software development with TechVenture", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766402154996-hfblxpxy.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}