4 Commits

Author SHA1 Message Date
f2706ed055 Merge version_3 into main
Merge version_3 into main
2026-03-06 20:29:10 +00:00
396c06306a Update src/app/styles/base.css 2026-03-06 20:29:04 +00:00
209a89ba66 Update src/app/layout.tsx 2026-03-06 20:29:03 +00:00
ab94081ef5 Merge version_2 into main
Merge version_2 into main
2026-03-06 20:05:52 +00:00
2 changed files with 10 additions and 6 deletions

View File

@@ -1,11 +1,15 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import { Poppins } from "next/font/google";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
const poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
title: "Create Next App", description: "Generated by create next app"};
title: "L'Antico Forziere", description: "An authentic Italian experience with fine dining and luxury accommodations in the heart of the countryside."
};
export default function RootLayout({
children,
@@ -14,7 +18,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={inter.className}>{children}
<body className={poppins.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-open-sans), sans-serif;
font-family: var(--font-poppins), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-open-sans), sans-serif;
font-family: var(--font-poppins), sans-serif;
}