7 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
51fa4e5ca8 Update src/app/page.tsx 2026-03-06 20:05:48 +00:00
0377e1e2ba Update src/app/layout.tsx 2026-03-06 20:05:47 +00:00
dbffe7cdca Merge version_1 into main
Merge version_1 into main
2026-03-06 20:01:40 +00:00
3 changed files with 12 additions and 43 deletions

View File

@@ -1,54 +1,24 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import { Poppins } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans", 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: "L'Antico Forziere | Italian Fine Dining & Country House", description: "Experience authentic Italian fine dining and luxury countryside accommodations at L'Antico Forziere. Savor handcrafted pasta, signature seafood, and truffle specialties in a historic setting.", keywords: "Italian restaurant, fine dining, luxury accommodations, countryside retreat, Tuscany, gourmet cuisine, truffle pasta", robots: {
index: true,
follow: true,
},
openGraph: {
title: "L'Antico Forziere | Italian Fine Dining & Country House", description: "Authentic Italian fine dining meets luxury countryside hospitality. Reserve your table or book your stay.", siteName: "L'Antico Forziere", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/restaurant-scene-with-flower_1147-446.jpg", alt: "L'Antico Forziere Restaurant"},
],
},
twitter: {
card: "summary_large_image", title: "L'Antico Forziere | Italian Fine Dining", description: "Discover authentic Italian cuisine in a historic countryside setting.", images: ["http://img.b2bpic.net/free-photo/restaurant-scene-with-flower_1147-446.jpg"],
},
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,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={poppins.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1386,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -49,7 +49,7 @@ export default function LandingPage() {
imageSrc="http://img.b2bpic.net/free-photo/restaurant-scene-with-flower_1147-446.jpg"
imageAlt="L'Antico Forziere Restaurant Interior"
buttons={[
{ text: "Reserve Your Table", href: "#contact" },
{ text: "Reserve Now", href: "#contact" },
{ text: "Explore More", href: "#about" },
]}
mediaAnimation="slide-up"

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;
}