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: "Webild - Build Digital Products Faster", description: "Transform your ideas into powerful digital products with Webild's innovative platform. Collaborate, create, and scale with enterprise-grade tools.", keywords: "product development, team collaboration, digital tools, workflow management, SaaS platform", metadataBase: new URL("https://webild.io"), alternates: { canonical: "https://webild.io" }, openGraph: { title: "Webild - Build Digital Products Faster", description: "Transform your ideas into powerful digital products with Webild's innovative platform. Collaborate, create, and scale with enterprise-grade tools.", siteName: "Webild", type: "website", images: [{ url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767716100337-8g5f8pk2.jpg", alt: "Webild Platform - Digital Product Development" }] }, twitter: { card: "summary_large_image", title: "Webild - Build Digital Products Faster", description: "Transform your ideas into powerful digital products with Webild's innovative platform.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767716100337-8g5f8pk2.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}