Update src/app/layout.tsx

This commit is contained in:
2026-03-21 19:36:19 +00:00
parent d219a1d75c
commit 1eb2b1b34a

View File

@@ -1,24 +1,56 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Source_Sans_3 } 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 { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Prestige Realty | Luxury Real Estate & Property Sales",
description: "Discover premium properties and expert real estate services with Prestige Realty. 20+ years of excellence in luxury home sales and investment opportunities.",
keywords: "real estate, luxury homes, property sales, real estate agent, investment properties, houses for sale",
openGraph: {
title: "Prestige Realty | Your Luxury Real Estate Partner",
description: "Expert real estate services and premium property listings. Find your dream home or investment property with Prestige Realty.",
siteName: "Prestige Realty",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/looking-up-through-history-elegant-staircase-old-building_169016-69867.jpg",
alt: "Prestige Realty - Luxury Properties",
},
],
},
twitter: {
card: "summary_large_image",
title: "Prestige Realty | Luxury Real Estate",
description: "Discover premium properties and expert real estate services",
images: ["http://img.b2bpic.net/free-photo/looking-up-through-history-elegant-staircase-old-building_169016-69867.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +59,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${sourceSans3.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +73,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}