Update src/app/layout.tsx

This commit is contained in:
2026-03-12 06:05:19 +00:00
parent 395530ac98
commit ff6afbdfe9

View File

@@ -1,24 +1,59 @@
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";
import { Nunito_Sans } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
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<{
@@ -27,7 +62,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunitoSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +76,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}