Update src/app/layout.tsx

This commit is contained in:
2026-03-12 06:13:58 +00:00
parent baad4fd4cf
commit e4845ba98f

View File

@@ -1,27 +1,60 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_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 { DM_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 dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "MS Realties | Premium Plotted Developments for Smart Investors",
description: "Discover premium plotted developments with 20+ years of industry expertise. BMRDA & RERA approved projects with transparent documentation and strong investment potential.",
keywords: "plotted development, real estate investment, premium plots, gated community, residential land, property investment, Bangalore real estate",
metadataBase: new URL("https://msrealties.com"),
alternates: {
canonical: "https://msrealties.com",
},
openGraph: {
title: "MS Realties | Premium Plotted Developments for Smart Investors",
description: "20+ years of real estate expertise. 1000+ satisfied customers. BMRDA & RERA approved projects with clear documentation and growth-focused locations.",
url: "https://msrealties.com",
siteName: "MS Realties",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/aerial-shot-beautiful-skatepark-daytime_181624-21255.jpg",
alt: "MS Realties Premium Plotted Development",
},
],
},
twitter: {
card: "summary_large_image",
title: "MS Realties | Premium Plotted Developments",
description: "Invest in premium plots with 20+ years of industry trust and transparency",
images: ["http://img.b2bpic.net/free-photo/aerial-shot-beautiful-skatepark-daytime_181624-21255.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
@@ -31,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}