diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 3545445..57b24c6 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -103,7 +103,7 @@ export default function AboutPage() { title="About The Rose Room" description="OXFORD'S PREMIER DESTINATION FOR BEAUTY & WELLNESS" background={{ variant: "plain" }} - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azc1FjZzDLy0VZMsNoEXQQnd36/uploaded-1773625286624-7yt6ijqa.png" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azc1FjZzDLy0VZMsNoEXQQnd36/uploaded-1773625286624-7yt6ijqa.png?_wi=2" imageAlt="The Rose Room Salon exterior" tag="Professional Excellence Since 2020" tagAnimation="blur-reveal" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9475e50..6853fc5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}