From 75a29177b84b8c262116c8028bd0a36be983dc55 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 02:12:42 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++++++------------------------------------ 1 file changed, 10 insertions(+), 40 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7f2e428..fcb2fb3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - + + + {children} - + +