From 1dc2b0157aa359ed85037147075f20e08155cc69 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 13:53:49 +0000 Subject: [PATCH 1/5] Update src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index 68b1d7a..a3263f0 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -66,7 +66,7 @@ export default function GalleryPage() { title: "Premium Sushi Selection", description: "Handcrafted sushi featuring the finest ingredients sourced daily. Our master sushi chefs prepare each piece with precision and care, creating an unforgettable culinary experience.", media: { - imageSrc: "http://img.b2bpic.net/free-photo/eat-tasty-japanese-white-black_1203-4157.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/eat-tasty-japanese-white-black_1203-4157.jpg?_wi=3", imageAlt: "Premium sushi platter at Chrome", }, items: [ @@ -86,7 +86,7 @@ export default function GalleryPage() { title: "Authentic Ramen", description: "Traditional ramen broths simmered for hours, combined with handmade noodles and fresh toppings. Each bowl tells a story of authentic Japanese culinary tradition.", media: { - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-assortment-noodles-table_23-2148803792.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-assortment-noodles-table_23-2148803792.jpg?_wi=2", imageAlt: "Authentic ramen bowl at Chrome", }, items: [ @@ -106,7 +106,7 @@ export default function GalleryPage() { title: "Signature Appetizers", description: "Our carefully curated appetizer selection showcases diverse Japanese flavors. From delicate gyoza to crispy tempura, each appetizer is designed to delight the palate.", media: { - imageSrc: "http://img.b2bpic.net/free-photo/raw-fresh-tuna-fish-meat-salad-with-avocado-mango_74190-749.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/raw-fresh-tuna-fish-meat-salad-with-avocado-mango_74190-749.jpg?_wi=3", imageAlt: "Japanese appetizer platter", }, items: [ -- 2.49.1 From da6c2eddbcef785575c0edd60be7b91db2c10e48 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 13:53:50 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 42 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1bfe997..dcc5cf6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,56 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Archivo } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Archivo } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const archivo = Archivo({ variable: "--font-archivo", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Chrome - Modern Japanese Restaurant in San Francisco", + description: "Experience authentic Japanese cuisine at Chrome, a modern restaurant in San Francisco. Fresh sushi, ramen, and traditional dishes in an elegant, minimalist setting.", + keywords: "Japanese restaurant San Francisco, sushi restaurant, ramen, authentic Japanese cuisine, modern dining, Japanese food", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Chrome - Modern Japanese Restaurant San Francisco", + description: "Authentic Japanese dining with contemporary elegance. Fresh ingredients, expert preparation, stylish atmosphere.", + type: "website", + siteName: "Chrome", + images: [ + { + url: "http://img.b2bpic.net/free-photo/eat-tasty-japanese-white-black_1203-4157.jpg", + alt: "Chrome Japanese Restaurant Hero Image", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Chrome Japanese Restaurant - San Francisco", + description: "Modern Japanese cuisine meets minimalist elegance. Reserve your table today.", + images: ["http://img.b2bpic.net/free-photo/eat-tasty-japanese-white-black_1203-4157.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +59,9 @@ export default function RootLayout({ return ( - + {children}