diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 84ac5a4..51b46b1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,20 +6,21 @@ import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; +import { Montserrat } from "next/font/google"; -const halant = Halant({ - variable: "--font-halant", + + +export const metadata: Metadata = { title: 'Heritage Rainho Pereira | Industrial Vintage Event Space', description: 'Experience fine dining in a curated vintage warehouse. Host your exclusive event surrounded by classic cars and industrial elegance at Heritage Rainho Pereira.' }; + +const montserrat = Montserrat({ + variable: "--font-montserrat", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], }); - const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -export const metadata: Metadata = { title: 'Heritage Rainho Pereira | Industrial Vintage Event Space', description: 'Experience fine dining in a curated vintage warehouse. Host your exclusive event surrounded by classic cars and industrial elegance at Heritage Rainho Pereira.' }; - export default function RootLayout({ children, }: Readonly<{ @@ -28,9 +29,7 @@ export default function RootLayout({ return ( - + {children}