Update src/app/layout.tsx

This commit is contained in:
2026-03-16 01:43:09 +00:00
parent 3907b13e1c
commit 81a31c653f

View File

@@ -1,30 +1,64 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Cormorant_Garamond } 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 { Cormorant_Garamond } from "next/font/google";
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 cormorantGaramond = Cormorant_Garamond({
variable: "--font-cormorant-garamond",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "The Rose Room Salon | Oxford, Ohio Beauty Services",
description: "Oxford's premier salon offering haircuts, styling, coloring, texture services, wax, spa treatments, and nail services by master stylists.",
keywords: "salon oxford ohio, hair salon, nail salon, beauty services, master stylist, hair coloring",
metadataBase: new URL("https://theroseroom.local"),
alternates: {
canonical: "https://theroseroom.local",
},
openGraph: {
title: "The Rose Room Salon - Oxford, Ohio",
description: "Professional beauty and salon services in Oxford, Ohio",
siteName: "The Rose Room Salon",
url: "https://theroseroom.local",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azc1FjZzDLy0VZMsNoEXQQnd36/uploaded-1773625286624-7yt6ijqa.png",
alt: "The Rose Room Salon exterior",
},
],
},
twitter: {
card: "summary_large_image",
title: "The Rose Room Salon",
description: "Professional beauty and salon services",
images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azc1FjZzDLy0VZMsNoEXQQnd36/uploaded-1773625286624-7yt6ijqa.png"],
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -33,7 +67,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${cormorantGaramond.variable} ${dmSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${cormorantGaramond.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -45,4 +81,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}