Merge version_2 into main #2
@@ -1,51 +1,22 @@
|
||||
import type { Metadata } from "next";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { ReactLenis } from "lenis/react";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Bottega | Authentic Italian Restaurant in San Francisco", description: "Experience authentic Italian cuisine at Bottega in San Francisco. Traditional recipes, modern atmosphere. Open daily 11AM-11PM. Order pickup or delivery available.", keywords: "Italian restaurant San Francisco, authentic Italian food, pizza, pasta, Valencia Street", metadataBase: new URL("https://bottegavalencia.com"),
|
||||
alternates: {
|
||||
canonical: "https://bottegavalencia.com"},
|
||||
openGraph: {
|
||||
title: "Bottega - Authentic Italian Restaurant", description: "Discover authentic Italian flavors crafted by passionate chefs. Visit Bottega on Valencia Street, San Francisco.", url: "https://bottegavalencia.com", siteName: "Bottega", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/traditional-italian-food-world-tourism-day_23-2149114040.jpg", alt: "Bottega Italian Restaurant - Authentic Pizza"},
|
||||
],
|
||||
type: "website"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Bottega | Authentic Italian Restaurant in SF", description: "Experience authentic Italian cuisine at Bottega. Traditional recipes, modern atmosphere. Open 11AM-11PM daily.", images: ["http://img.b2bpic.net/free-photo/traditional-italian-food-world-tourism-day_23-2149114040.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
const metadata: Metadata = {
|
||||
title: "Bottega - Authentic Italian Restaurant in San Francisco", description: "Experience authentic Italian cuisine at Bottega, located in the heart of San Francisco. Fresh ingredients, traditional recipes, and warm hospitality await you."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${dmSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
<html lang="en">
|
||||
<body>
|
||||
<ReactLenis root>
|
||||
{children}
|
||||
|
||||
</ReactLenis>
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1413,7 +1384,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -59,7 +59,7 @@ export default function LandingPage() {
|
||||
imageSrc="http://img.b2bpic.net/free-photo/traditional-italian-food-world-tourism-day_23-2149114040.jpg"
|
||||
imageAlt="3D rotating pizza with steam animation"
|
||||
buttons={[
|
||||
{ text: "View Menu", href: "#menu" },
|
||||
{ text: "Reserve a Table", href: "#contact" },
|
||||
{ text: "Order Pickup", href: "#contact" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user