Update src/app/layout.tsx

This commit is contained in:
2026-03-04 01:56:31 +00:00
parent 4c5dd18da7
commit 8207232e1a

View File

@@ -1,12 +1,13 @@
import type { Metadata } from "next";
import { Montserrat } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville", subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
@@ -14,15 +15,15 @@ const inter = Inter({
});
export const metadata: Metadata = {
title: "Meridian — Luxury Home Services for Discerning Homeowners", description: "Discreet, refined home services for high-net-worth individuals. Interior design, estate management, project oversight, and luxury concierge.", keywords: "luxury home services, interior design, estate management, concierge, high-end property care", openGraph: {
title: "Meridian — Luxury Home Services", description: "Exceptional care for exceptional homes. Design, management, and concierge for the discerning.", siteName: "Meridian", type: "website", images: [
title: "Your Home, Perfectly Attended To — Luxury Estate Management", description: "White-glove home management and estate services for those who demand nothing less than extraordinary.", keywords: "luxury home services, estate management, white-glove service, property management", openGraph: {
title: "Your Home, Perfectly Attended To", description: "White-glove home management and estate services for the most discerning homeowners.", siteName: "Estate Management", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/happy-couple-resting-home-with-good-mood_651396-28.jpg", alt: "Meridian luxury home services"
url: "https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1200&h=630&fit=crop", alt: "Luxury interior design"
}
]
},
twitter: {
card: "summary_large_image", title: "Meridian — Luxury Home Services", description: "Discreet, refined home services for the most discerning homeowners.", images: ["http://img.b2bpic.net/free-photo/happy-couple-resting-home-with-good-mood_651396-28.jpg"]
card: "summary_large_image", title: "Your Home, Perfectly Attended To", description: "White-glove home management and estate services.", images: ["https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1200&h=630&fit=crop"]
}
};
@@ -35,7 +36,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${montserrat.variable} ${inter.variable} antialiased`}
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
@@ -1410,4 +1411,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}