Merge version_3 into main #4

Merged
bender merged 2 commits from version_3 into main 2026-04-27 15:13:46 +00:00
2 changed files with 3 additions and 6 deletions

View File

@@ -12,14 +12,11 @@ import { Montserrat } from "next/font/google";
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"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export default function RootLayout({
children,
@@ -29,7 +26,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
<body className={`${montserrat.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-inter), sans-serif;
font-family: var(--font-montserrat), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;