3 Commits

Author SHA1 Message Date
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
2 changed files with 7 additions and 42 deletions

View File

@@ -1,54 +1,20 @@
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 "./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 inter = Inter({ subsets: ["latin"] });
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: "Create Next App", description: "Generated by create next app"};
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={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,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"