Files
a177079a-5cc2-4ec2-9220-b88…/src/app/layout.tsx
2026-03-12 06:05:19 +00:00

79 lines
2.6 KiB
TypeScript

import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "AI-First Design & Development Services | Webild Studio",
description: "Transform your vision with AI-powered UI/UX design, SaaS development, and web applications. Trusted by global enterprises across USA, UK, Germany, Australia, and more.",
keywords: "AI design, SaaS development, UI/UX design, web development, mobile app development, Webflow, global software services",
robots: {
index: true,
follow: true,
},
openGraph: {
title: "AI-First Design & Development Services | Webild Studio",
description: "Enterprise-grade design and development services powered by AI. Serving global markets from India.",
url: "https://webild.studio",
siteName: "Webild Studio",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AphKd2GJR4tx2uqqM9TLcVFmfj/a-modern-sleek-ai-powered-dashboard-inte-1773295456642-bbd1516a.png",
alt: "Webild Studio - AI-Powered Design & Development",
},
],
},
twitter: {
card: "summary_large_image",
title: "AI-First Design & Development | Webild Studio",
description: "Transform your vision with cutting-edge AI design and development services.",
images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AphKd2GJR4tx2uqqM9TLcVFmfj/a-modern-sleek-ai-powered-dashboard-inte-1773295456642-bbd1516a.png",
],
},
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}