Update src/app/layout.tsx

This commit is contained in:
2026-03-14 20:51:26 +00:00
parent 861d7041ee
commit 9908629e9a

View File

@@ -1,24 +1,61 @@
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: "Nest Interiors | Premium Interior Design Studio UAE",
description: "Transform your living and working spaces with Nest Interiors, a premium interior design studio in the UAE specializing in residential, commercial, and renovation design.",
keywords: "interior design UAE, premium interior design, home design Dubai, office interior design, commercial interior design, space renovation",
metadataBase: new URL("https://nestinteriors.ae"),
alternates: {
canonical: "https://nestinteriors.ae",
},
openGraph: {
title: "Nest Interiors | Premium Interior Design Studio UAE",
description: "Transforming spaces, elevating lifestyles. Premium interior design for homes, offices, and commercial spaces in the UAE.",
url: "https://nestinteriors.ae",
siteName: "Nest Interiors",
images: [
{
url: "http://img.b2bpic.net/free-photo/living-room-with-blue-sofa-lamp-with-gold-leaf-it_123827-23880.jpg",
alt: "Nest Interiors Premium Interior Design",
},
],
type: "website",
},
twitter: {
card: "summary_large_image",
title: "Nest Interiors | Premium Interior Design Studio UAE",
description: "Transform your space with Nest Interiors. Premium interior design for residential and commercial projects.",
images: ["http://img.b2bpic.net/free-photo/living-room-with-blue-sofa-lamp-with-gold-leaf-it_123827-23880.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,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 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}