import type { Metadata } from "next"; import { Source_Serif_4 } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const sourceSerif4 = Source_Serif_4({ variable: "--font-source-serif-4", subsets: ["latin"], }); export const metadata: Metadata = { title: "Webild | Digital Design & Development Solutions", description: "Transform your digital presence with Webild. Premium web design and development services for SaaS, fintech, and enterprise companies.", keywords: "web design, web development, SaaS design, digital solutions, UI/UX design, software development", metadataBase: new URL("https://webild.com"), alternates: { canonical: "https://webild.com" }, openGraph: { title: "Webild | Digital Design & Development", description: "Premium web design and development services for modern businesses", type: "website", siteName: "Webild", images: [ { url: "https://img.b2bpic.net/free-vector/isometric-landing-page_23-2148101273.jpg", alt: "Webild - Digital Design & Development" } ] }, twitter: { card: "summary_large_image", title: "Webild | Digital Design & Development", description: "Transform your digital presence with premium web solutions", images: ["https://img.b2bpic.net/free-vector/isometric-landing-page_23-2148101273.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}