Merge version_1 into main #1
@@ -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: [
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${archivo.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +73,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -50,7 +50,7 @@ export default function MenuPage() {
|
||||
title: "Artisan Nigiri",
|
||||
description: "Hand-formed sushi rice topped with premium raw and cooked fish selections. Each piece is crafted with precision and care.",
|
||||
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=2",
|
||||
imageAlt: "Artisan nigiri sushi selection",
|
||||
},
|
||||
items: [
|
||||
@@ -70,7 +70,7 @@ export default function MenuPage() {
|
||||
title: "Premium Sashimi",
|
||||
description: "Thinly sliced raw fish served with traditional accompaniments. Showcases the true quality of our ingredient selection.",
|
||||
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=2",
|
||||
imageAlt: "Premium sashimi platter",
|
||||
},
|
||||
items: [
|
||||
@@ -103,7 +103,7 @@ export default function MenuPage() {
|
||||
title: "Authentic Ramen",
|
||||
description: "Rich broths simmered for hours with fresh noodles and carefully selected toppings. Traditional recipes with contemporary presentation.",
|
||||
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=1",
|
||||
imageAlt: "Authentic ramen bowl",
|
||||
},
|
||||
items: [
|
||||
|
||||
@@ -54,7 +54,7 @@ export default function HomePage() {
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
layoutOrder="default"
|
||||
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=1"
|
||||
imageAlt="Beautiful sushi platter at Chrome restaurant"
|
||||
mediaAnimation="blur-reveal"
|
||||
/>
|
||||
@@ -95,7 +95,7 @@ export default function HomePage() {
|
||||
title: "Fresh Ingredients",
|
||||
description: "We source the finest Japanese ingredients daily, ensuring every dish reflects authentic flavors and premium quality.",
|
||||
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=1",
|
||||
imageAlt: "Fresh ingredient preparation",
|
||||
},
|
||||
items: [
|
||||
@@ -115,7 +115,7 @@ export default function HomePage() {
|
||||
title: "Authentic Japanese Cuisine",
|
||||
description: "Our menu features traditional sushi, ramen, and contemporary Japanese dishes prepared by experienced chefs trained in Japan.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hand-holding-chopsticks_23-2149250127.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hand-holding-chopsticks_23-2149250127.jpg?_wi=1",
|
||||
imageAlt: "Chef preparing authentic sushi",
|
||||
},
|
||||
items: [
|
||||
@@ -135,7 +135,7 @@ export default function HomePage() {
|
||||
title: "Stylish Dining Experience",
|
||||
description: "Our minimalist-designed restaurant combines sleek modern architecture with warm accents, creating an inviting and elegant atmosphere.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/plates-brown-wooden-table_417767-541.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/plates-brown-wooden-table_417767-541.jpg?_wi=1",
|
||||
imageAlt: "Modern restaurant interior",
|
||||
},
|
||||
items: [
|
||||
|
||||
@@ -91,7 +91,7 @@ export default function ReservationsPage() {
|
||||
title: "Omakase Counter",
|
||||
description: "Experience our chef's expertise up close at the omakase counter. Watch as our master chef prepares each piece with precision, offering an interactive and intimate dining experience.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/plates-brown-wooden-table_417767-541.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/plates-brown-wooden-table_417767-541.jpg?_wi=2",
|
||||
imageAlt: "Restaurant counter seating",
|
||||
},
|
||||
items: [
|
||||
@@ -131,7 +131,7 @@ export default function ReservationsPage() {
|
||||
title: "Comfortable Table Seating",
|
||||
description: "Our main dining area combines contemporary design with warmth. Enjoy carefully plated dishes and attentive service in an atmosphere designed for meaningful conversations.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hand-holding-chopsticks_23-2149250127.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hand-holding-chopsticks_23-2149250127.jpg?_wi=2",
|
||||
imageAlt: "Fine dining table setting",
|
||||
},
|
||||
items: [
|
||||
|
||||
Reference in New Issue
Block a user