Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 97e709b07a | |||
| b5d45cd53b | |||
| c04a791ccc | |||
| 6c0753153f | |||
| 6679140a4e | |||
| 8356321c85 | |||
| 1467a97e3e | |||
| b3d3fb3dc1 |
@@ -30,8 +30,7 @@ export default function ContactPage() {
|
||||
? "/gallery"
|
||||
: item.id === "reservations"
|
||||
? "/reservations"
|
||||
: "/contact",
|
||||
}));
|
||||
: "/contact"}));
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
@@ -48,7 +47,7 @@ export default function ContactPage() {
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
brandName="Chrome"
|
||||
brandName="Chome"
|
||||
navItems={navItems}
|
||||
bottomLeftText="Modern Japanese Dining"
|
||||
bottomRightText="San Francisco, CA"
|
||||
@@ -57,40 +56,31 @@ export default function ContactPage() {
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
text="Ready to experience Chrome? Contact us to make a reservation or learn more about our menu. Visit us at 3601 26th St, San Francisco, CA 94110, or reach out via phone or email."
|
||||
text="Ready to experience Chome? Contact us to make a reservation or learn more about our menu. Visit us at 3601 26th St, San Francisco, CA 94110, or reach out via phone or email."
|
||||
animationType="entrance-slide"
|
||||
buttons={[
|
||||
{
|
||||
text: "Reserve Now",
|
||||
href: "/reservations",
|
||||
},
|
||||
text: "Reserve Now", href: "/reservations"},
|
||||
{
|
||||
text: "View Contact Info",
|
||||
href: "/contact",
|
||||
},
|
||||
text: "View Contact Info", href: "/contact"},
|
||||
]}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Chrome"
|
||||
copyrightText="© 2025 Chrome Japanese Restaurant. All rights reserved."
|
||||
logoText="Chome"
|
||||
copyrightText="© 2025 Chome Japanese Restaurant. All rights reserved."
|
||||
socialLinks={[
|
||||
{
|
||||
icon: Instagram,
|
||||
href: "https://instagram.com",
|
||||
ariaLabel: "Follow us on Instagram",
|
||||
},
|
||||
href: "https://instagram.com", ariaLabel: "Follow us on Instagram"},
|
||||
{
|
||||
icon: Facebook,
|
||||
href: "https://facebook.com",
|
||||
ariaLabel: "Like us on Facebook",
|
||||
},
|
||||
href: "https://facebook.com", ariaLabel: "Like us on Facebook"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -21,17 +21,10 @@ export default function GalleryPage() {
|
||||
|
||||
const navItemsWithRoutes = navItems.map((item) => {
|
||||
const routeMap: Record<string, string> = {
|
||||
home: "/",
|
||||
about: "/",
|
||||
menu: "/",
|
||||
gallery: "/gallery",
|
||||
reservations: "/reservations",
|
||||
contact: "/",
|
||||
};
|
||||
home: "/", about: "/", menu: "/", gallery: "/gallery", reservations: "/reservations", contact: "/"};
|
||||
return {
|
||||
...item,
|
||||
href: routeMap[item.id] || "/",
|
||||
};
|
||||
href: routeMap[item.id] || "/"};
|
||||
});
|
||||
|
||||
return (
|
||||
@@ -50,7 +43,7 @@ export default function GalleryPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={navItems}
|
||||
brandName="Chrome"
|
||||
brandName="Chome"
|
||||
bottomLeftText="Modern Japanese Dining"
|
||||
bottomRightText="San Francisco, CA"
|
||||
/>
|
||||
@@ -59,65 +52,44 @@ export default function GalleryPage() {
|
||||
<div id="gallery-features" data-section="gallery-features">
|
||||
<FeatureCardTen
|
||||
title="Our Culinary Creations"
|
||||
description="Explore the artistry and craftsmanship behind every dish at Chrome. From meticulously prepared sushi to authentic ramen bowls, each creation represents our commitment to excellence and authentic Japanese cuisine."
|
||||
description="Explore the artistry and craftsmanship behind every dish at Chome. From meticulously prepared sushi to authentic ramen bowls, each creation represents our commitment to excellence and authentic Japanese cuisine."
|
||||
features={[
|
||||
{
|
||||
id: "sushi-selection",
|
||||
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?_wi=3",
|
||||
imageAlt: "Premium sushi platter at Chrome",
|
||||
},
|
||||
id: "sushi-selection", 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?_wi=3", imageAlt: "Premium sushi platter at Chome"},
|
||||
items: [
|
||||
{
|
||||
icon: Award,
|
||||
text: "Master chef preparation",
|
||||
},
|
||||
text: "Master chef preparation"},
|
||||
{
|
||||
icon: Sparkles,
|
||||
text: "Premium ingredients",
|
||||
},
|
||||
text: "Premium ingredients"},
|
||||
],
|
||||
reverse: false,
|
||||
},
|
||||
{
|
||||
id: "ramen-experience",
|
||||
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?_wi=2",
|
||||
imageAlt: "Authentic ramen bowl at Chrome",
|
||||
},
|
||||
id: "ramen-experience", 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?_wi=2", imageAlt: "Authentic ramen bowl at Chome"},
|
||||
items: [
|
||||
{
|
||||
icon: Home,
|
||||
text: "Traditional preparation",
|
||||
},
|
||||
text: "Traditional preparation"},
|
||||
{
|
||||
icon: Zap,
|
||||
text: "Fresh daily preparation",
|
||||
},
|
||||
text: "Fresh daily preparation"},
|
||||
],
|
||||
reverse: true,
|
||||
},
|
||||
{
|
||||
id: "appetizer-collection",
|
||||
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?_wi=3",
|
||||
imageAlt: "Japanese appetizer platter",
|
||||
},
|
||||
id: "appetizer-collection", 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?_wi=3", imageAlt: "Japanese appetizer platter"},
|
||||
items: [
|
||||
{
|
||||
icon: Award,
|
||||
text: "Artful presentation",
|
||||
},
|
||||
text: "Artful presentation"},
|
||||
{
|
||||
icon: Sparkles,
|
||||
text: "Authentic flavors",
|
||||
},
|
||||
text: "Authentic flavors"},
|
||||
],
|
||||
reverse: false,
|
||||
},
|
||||
@@ -132,38 +104,14 @@ export default function GalleryPage() {
|
||||
<TestimonialCardFive
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah Chen",
|
||||
date: "2 weeks ago",
|
||||
title: "Marketing Director",
|
||||
quote: "Chrome offers an exceptional dining experience. The sushi is incredibly fresh, the service is impeccable, and the atmosphere is perfectly sophisticated yet welcoming. A true gem in San Francisco.",
|
||||
tag: "Exceptional Quality",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/young-woman-sitting-library_273609-15843.jpg",
|
||||
avatarAlt: "Sarah Chen",
|
||||
},
|
||||
id: "1", name: "Sarah Chen", date: "2 weeks ago", title: "Marketing Director", quote: "Chome offers an exceptional dining experience. The sushi is incredibly fresh, the service is impeccable, and the atmosphere is perfectly sophisticated yet welcoming. A true gem in San Francisco.", tag: "Exceptional Quality", avatarSrc: "http://img.b2bpic.net/free-photo/young-woman-sitting-library_273609-15843.jpg", avatarAlt: "Sarah Chen"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Michael Rodriguez",
|
||||
date: "1 month ago",
|
||||
title: "Food Critic",
|
||||
quote: "Chrome represents the future of Japanese dining in San Francisco. The blend of traditional techniques with modern presentation is masterful. Every detail, from the plating to the service, demonstrates genuine craftsmanship.",
|
||||
tag: "Culinary Excellence",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/joyful-man-white-tshirt-jacket-smiling-brown-background_197531-26657.jpg",
|
||||
avatarAlt: "Michael Rodriguez",
|
||||
},
|
||||
id: "2", name: "Michael Rodriguez", date: "1 month ago", title: "Food Critic", quote: "Chome represents the future of Japanese dining in San Francisco. The blend of traditional techniques with modern presentation is masterful. Every detail, from the plating to the service, demonstrates genuine craftsmanship.", tag: "Culinary Excellence", avatarSrc: "http://img.b2bpic.net/free-photo/joyful-man-white-tshirt-jacket-smiling-brown-background_197531-26657.jpg", avatarAlt: "Michael Rodriguez"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily Thompson",
|
||||
date: "3 weeks ago",
|
||||
title: "Restaurant Owner",
|
||||
quote: "I've dined at Chrome multiple times, and it never disappoints. The ramen is authentic and comforting, the sashimi is pristine, and the overall experience feels premium without being pretentious.",
|
||||
tag: "Premium Experience",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/smiley-business-woman-posing-outdoors-suit_23-2148603024.jpg",
|
||||
avatarAlt: "Emily Thompson",
|
||||
},
|
||||
id: "3", name: "Emily Thompson", date: "3 weeks ago", title: "Restaurant Owner", quote: "I've dined at Chome multiple times, and it never disappoints. The ramen is authentic and comforting, the sashimi is pristine, and the overall experience feels premium without being pretentious.", tag: "Premium Experience", avatarSrc: "http://img.b2bpic.net/free-photo/smiley-business-woman-posing-outdoors-suit_23-2148603024.jpg", avatarAlt: "Emily Thompson"},
|
||||
]}
|
||||
title="Guest Experiences"
|
||||
description="Discover what our valued guests love about Chrome's gallery of culinary artistry and dining atmosphere."
|
||||
description="Discover what our valued guests love about Chome's gallery of culinary artistry and dining atmosphere."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
@@ -171,40 +119,31 @@ export default function GalleryPage() {
|
||||
|
||||
<div id="gallery-contact" data-section="gallery-contact">
|
||||
<ContactText
|
||||
text="Interested in experiencing Chrome's culinary artistry? Visit us to see our gallery of creations in person or contact us for more information about our menu and dining experience."
|
||||
text="Interested in experiencing Chome's culinary artistry? Visit us to see our gallery of creations in person or contact us for more information about our menu and dining experience."
|
||||
animationType="entrance-slide"
|
||||
buttons={[
|
||||
{
|
||||
text: "Reserve Now",
|
||||
href: "/reservations",
|
||||
},
|
||||
text: "Reserve Now", href: "/reservations"},
|
||||
{
|
||||
text: "View Menu",
|
||||
href: "/",
|
||||
},
|
||||
text: "View Menu", href: "/"},
|
||||
]}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Chrome"
|
||||
copyrightText="© 2025 Chrome Japanese Restaurant. All rights reserved."
|
||||
logoText="Chome"
|
||||
copyrightText="© 2025 Chome Japanese Restaurant. All rights reserved."
|
||||
socialLinks={[
|
||||
{
|
||||
icon: Instagram,
|
||||
href: "https://instagram.com",
|
||||
ariaLabel: "Follow us on Instagram",
|
||||
},
|
||||
href: "https://instagram.com", ariaLabel: "Follow us on Instagram"},
|
||||
{
|
||||
icon: Facebook,
|
||||
href: "https://facebook.com",
|
||||
ariaLabel: "Like us on Facebook",
|
||||
},
|
||||
href: "https://facebook.com", ariaLabel: "Like us on Facebook"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -33,7 +33,7 @@ export default function MenuPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={navItems}
|
||||
brandName="Chrome"
|
||||
brandName="Chome"
|
||||
bottomLeftText="Modern Japanese Dining"
|
||||
bottomRightText="San Francisco, CA"
|
||||
/>
|
||||
@@ -46,42 +46,28 @@ export default function MenuPage() {
|
||||
tag="Premium Selection"
|
||||
features={[
|
||||
{
|
||||
id: "nigiri",
|
||||
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?_wi=2",
|
||||
imageAlt: "Artisan nigiri sushi selection",
|
||||
},
|
||||
id: "nigiri", 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?_wi=2", imageAlt: "Artisan nigiri sushi selection"},
|
||||
items: [
|
||||
{
|
||||
icon: Leaf,
|
||||
text: "Fresh daily sourced fish",
|
||||
},
|
||||
text: "Fresh daily sourced fish"},
|
||||
{
|
||||
icon: Zap,
|
||||
text: "Expert rice preparation",
|
||||
},
|
||||
text: "Expert rice preparation"},
|
||||
],
|
||||
reverse: false,
|
||||
},
|
||||
{
|
||||
id: "sashimi",
|
||||
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?_wi=2",
|
||||
imageAlt: "Premium sashimi platter",
|
||||
},
|
||||
id: "sashimi", 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?_wi=2", imageAlt: "Premium sashimi platter"},
|
||||
items: [
|
||||
{
|
||||
icon: Flame,
|
||||
text: "Signature flavor profiles",
|
||||
},
|
||||
text: "Signature flavor profiles"},
|
||||
{
|
||||
icon: Leaf,
|
||||
text: "Seasonal specials",
|
||||
},
|
||||
text: "Seasonal specials"},
|
||||
],
|
||||
reverse: true,
|
||||
},
|
||||
@@ -99,42 +85,28 @@ export default function MenuPage() {
|
||||
tag="Comfort & Tradition"
|
||||
features={[
|
||||
{
|
||||
id: "ramen",
|
||||
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?_wi=1",
|
||||
imageAlt: "Authentic ramen bowl",
|
||||
},
|
||||
id: "ramen", 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?_wi=1", imageAlt: "Authentic ramen bowl"},
|
||||
items: [
|
||||
{
|
||||
icon: Flame,
|
||||
text: "Tonkotsu broth specialty",
|
||||
},
|
||||
text: "Tonkotsu broth specialty"},
|
||||
{
|
||||
icon: Leaf,
|
||||
text: "Fresh noodles daily",
|
||||
},
|
||||
text: "Fresh noodles daily"},
|
||||
],
|
||||
reverse: false,
|
||||
},
|
||||
{
|
||||
id: "tempura",
|
||||
title: "Delicate Tempura",
|
||||
description: "Lightly battered and perfectly fried vegetables and seafood. Served crispy with dipping sauces that enhance natural flavors.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-sweet-tang-yuan-composition_23-2149149063.jpg",
|
||||
imageAlt: "Gourmet tempura platter",
|
||||
},
|
||||
id: "tempura", title: "Delicate Tempura", description: "Lightly battered and perfectly fried vegetables and seafood. Served crispy with dipping sauces that enhance natural flavors.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-sweet-tang-yuan-composition_23-2149149063.jpg", imageAlt: "Gourmet tempura platter"},
|
||||
items: [
|
||||
{
|
||||
icon: Zap,
|
||||
text: "Light & crispy coating",
|
||||
},
|
||||
text: "Light & crispy coating"},
|
||||
{
|
||||
icon: Flame,
|
||||
text: "Premium dipping sauces",
|
||||
},
|
||||
text: "Premium dipping sauces"},
|
||||
],
|
||||
reverse: true,
|
||||
},
|
||||
@@ -147,7 +119,7 @@ export default function MenuPage() {
|
||||
|
||||
<div id="menu-cta" data-section="menu-cta">
|
||||
<ContactText
|
||||
text="Ready to experience our full menu in person? Reserve your table at Chrome today and let our culinary team guide you through an unforgettable Japanese dining experience."
|
||||
text="Ready to experience our full menu in person? Reserve your table at Chome today and let our culinary team guide you through an unforgettable Japanese dining experience."
|
||||
animationType="entrance-slide"
|
||||
buttons={[
|
||||
{ text: "Make a Reservation", href: "/reservations" },
|
||||
@@ -160,19 +132,15 @@ export default function MenuPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Chrome"
|
||||
copyrightText="© 2025 Chrome Japanese Restaurant. All rights reserved."
|
||||
logoText="Chome"
|
||||
copyrightText="© 2025 Chome Japanese Restaurant. All rights reserved."
|
||||
socialLinks={[
|
||||
{
|
||||
icon: Instagram,
|
||||
href: "https://instagram.com",
|
||||
ariaLabel: "Follow us on Instagram",
|
||||
},
|
||||
href: "https://instagram.com", ariaLabel: "Follow us on Instagram"},
|
||||
{
|
||||
icon: Facebook,
|
||||
href: "https://facebook.com",
|
||||
ariaLabel: "Like us on Facebook",
|
||||
},
|
||||
href: "https://facebook.com", ariaLabel: "Like us on Facebook"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
127
src/app/page.tsx
127
src/app/page.tsx
@@ -37,7 +37,7 @@ export default function HomePage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={navItems}
|
||||
brandName="Chrome"
|
||||
brandName="Chome"
|
||||
bottomLeftText="Modern Japanese Dining"
|
||||
bottomRightText="San Francisco, CA"
|
||||
/>
|
||||
@@ -45,8 +45,8 @@ export default function HomePage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboardSplit
|
||||
logoText="Chrome"
|
||||
description="Experience Modern Japanese Dining at Chrome. Authentic cuisine, fresh ingredients, and contemporary elegance in the heart of San Francisco."
|
||||
logoText="Chome"
|
||||
description="Experience Modern Japanese Dining at Chome. Authentic cuisine, fresh ingredients, and contemporary elegance in the heart of San Francisco."
|
||||
background={{ variant: "plain" }}
|
||||
buttons={[
|
||||
{ text: "View Menu", href: "/menu" },
|
||||
@@ -55,30 +55,24 @@ export default function HomePage() {
|
||||
buttonAnimation="slide-up"
|
||||
layoutOrder="default"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/eat-tasty-japanese-white-black_1203-4157.jpg"
|
||||
imageAlt="Beautiful sushi platter at Chrome restaurant"
|
||||
imageAlt="Beautiful sushi platter at Chome restaurant"
|
||||
mediaAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<AboutMetric
|
||||
title="Welcome to Chrome: Modern Japanese Excellence"
|
||||
title="Welcome to Chome: Modern Japanese Excellence"
|
||||
metrics={[
|
||||
{
|
||||
icon: ChefHat,
|
||||
label: "Experienced Chefs",
|
||||
value: "15+ Years",
|
||||
},
|
||||
label: "Experienced Chefs", value: "15+ Years"},
|
||||
{
|
||||
icon: Leaf,
|
||||
label: "Fresh Ingredients",
|
||||
value: "Daily Sourced",
|
||||
},
|
||||
label: "Fresh Ingredients", value: "Daily Sourced"},
|
||||
{
|
||||
icon: Sparkles,
|
||||
label: "Stylish Dining",
|
||||
value: "Contemporary Design",
|
||||
},
|
||||
label: "Stylish Dining", value: "Contemporary Design"},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -87,66 +81,45 @@ export default function HomePage() {
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardTen
|
||||
title="What Sets Chrome Apart"
|
||||
description="Chrome celebrates the art of Japanese cuisine with a commitment to authenticity, quality, and innovation. Located in San Francisco, we blend traditional cooking techniques with contemporary dining aesthetics."
|
||||
title="What Sets Chome Apart"
|
||||
description="Chome celebrates the art of Japanese cuisine with a commitment to authenticity, quality, and innovation. Located in San Francisco, we blend traditional cooking techniques with contemporary dining aesthetics."
|
||||
features={[
|
||||
{
|
||||
id: "fresh",
|
||||
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",
|
||||
imageAlt: "Fresh ingredient preparation",
|
||||
},
|
||||
id: "fresh", 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", imageAlt: "Fresh ingredient preparation"},
|
||||
items: [
|
||||
{
|
||||
icon: Leaf,
|
||||
text: "Daily ingredient sourcing",
|
||||
},
|
||||
text: "Daily ingredient sourcing"},
|
||||
{
|
||||
icon: Shield,
|
||||
text: "Quality assurance",
|
||||
},
|
||||
text: "Quality assurance"},
|
||||
],
|
||||
reverse: false,
|
||||
},
|
||||
{
|
||||
id: "authentic",
|
||||
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",
|
||||
imageAlt: "Chef preparing authentic sushi",
|
||||
},
|
||||
id: "authentic", 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", imageAlt: "Chef preparing authentic sushi"},
|
||||
items: [
|
||||
{
|
||||
icon: Award,
|
||||
text: "Traditional techniques",
|
||||
},
|
||||
text: "Traditional techniques"},
|
||||
{
|
||||
icon: Sparkles,
|
||||
text: "Expert preparation",
|
||||
},
|
||||
text: "Expert preparation"},
|
||||
],
|
||||
reverse: true,
|
||||
},
|
||||
{
|
||||
id: "experience",
|
||||
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",
|
||||
imageAlt: "Modern restaurant interior",
|
||||
},
|
||||
id: "experience", 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", imageAlt: "Modern restaurant interior"},
|
||||
items: [
|
||||
{
|
||||
icon: Home,
|
||||
text: "Contemporary design",
|
||||
},
|
||||
text: "Contemporary design"},
|
||||
{
|
||||
icon: Zap,
|
||||
text: "Welcoming ambiance",
|
||||
},
|
||||
text: "Welcoming ambiance"},
|
||||
],
|
||||
reverse: false,
|
||||
},
|
||||
@@ -161,48 +134,16 @@ export default function HomePage() {
|
||||
<TestimonialCardFive
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah Chen",
|
||||
date: "2 weeks ago",
|
||||
title: "Marketing Director",
|
||||
quote: "Chrome offers an exceptional dining experience. The sushi is incredibly fresh, the service is impeccable, and the atmosphere is perfectly sophisticated yet welcoming. A true gem in San Francisco.",
|
||||
tag: "Exceptional Quality",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/young-woman-sitting-library_273609-15843.jpg",
|
||||
avatarAlt: "Sarah Chen",
|
||||
},
|
||||
id: "1", name: "Sarah Chen", date: "2 weeks ago", title: "Marketing Director", quote: "Chome offers an exceptional dining experience. The sushi is incredibly fresh, the service is impeccable, and the atmosphere is perfectly sophisticated yet welcoming. A true gem in San Francisco.", tag: "Exceptional Quality", avatarSrc: "http://img.b2bpic.net/free-photo/young-woman-sitting-library_273609-15843.jpg", avatarAlt: "Sarah Chen"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Michael Rodriguez",
|
||||
date: "1 month ago",
|
||||
title: "Food Critic",
|
||||
quote: "Chrome represents the future of Japanese dining in San Francisco. The blend of traditional techniques with modern presentation is masterful. Every detail, from the plating to the service, demonstrates genuine craftsmanship.",
|
||||
tag: "Culinary Excellence",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/joyful-man-white-tshirt-jacket-smiling-brown-background_197531-26657.jpg",
|
||||
avatarAlt: "Michael Rodriguez",
|
||||
},
|
||||
id: "2", name: "Michael Rodriguez", date: "1 month ago", title: "Food Critic", quote: "Chome represents the future of Japanese dining in San Francisco. The blend of traditional techniques with modern presentation is masterful. Every detail, from the plating to the service, demonstrates genuine craftsmanship.", tag: "Culinary Excellence", avatarSrc: "http://img.b2bpic.net/free-photo/joyful-man-white-tshirt-jacket-smiling-brown-background_197531-26657.jpg", avatarAlt: "Michael Rodriguez"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily Thompson",
|
||||
date: "3 weeks ago",
|
||||
title: "Restaurant Owner",
|
||||
quote: "I've dined at Chrome multiple times, and it never disappoints. The ramen is authentic and comforting, the sashimi is pristine, and the overall experience feels premium without being pretentious.",
|
||||
tag: "Premium Experience",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/smiley-business-woman-posing-outdoors-suit_23-2148603024.jpg",
|
||||
avatarAlt: "Emily Thompson",
|
||||
},
|
||||
id: "3", name: "Emily Thompson", date: "3 weeks ago", title: "Restaurant Owner", quote: "I've dined at Chome multiple times, and it never disappoints. The ramen is authentic and comforting, the sashimi is pristine, and the overall experience feels premium without being pretentious.", tag: "Premium Experience", avatarSrc: "http://img.b2bpic.net/free-photo/smiley-business-woman-posing-outdoors-suit_23-2148603024.jpg", avatarAlt: "Emily Thompson"},
|
||||
{
|
||||
id: "4",
|
||||
name: "David Park",
|
||||
date: "1 month ago",
|
||||
title: "CEO, Tech Company",
|
||||
quote: "Chrome is my go-to restaurant for business dinners and celebrations. The minimalist design creates a sophisticated backdrop for meaningful conversations, and the food quality is consistently outstanding.",
|
||||
tag: "Best for Business",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/handsome-afroamerican-man-smiling_23-2148508920.jpg",
|
||||
avatarAlt: "David Park",
|
||||
},
|
||||
id: "4", name: "David Park", date: "1 month ago", title: "CEO, Tech Company", quote: "Chome is my go-to restaurant for business dinners and celebrations. The minimalist design creates a sophisticated backdrop for meaningful conversations, and the food quality is consistently outstanding.", tag: "Best for Business", avatarSrc: "http://img.b2bpic.net/free-photo/handsome-afroamerican-man-smiling_23-2148508920.jpg", avatarAlt: "David Park"},
|
||||
]}
|
||||
title="What Our Guests Say"
|
||||
description="Discover why diners in San Francisco choose Chrome for an authentic, elegant Japanese dining experience."
|
||||
description="Discover why diners in San Francisco choose Chome for an authentic, elegant Japanese dining experience."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
@@ -210,7 +151,7 @@ export default function HomePage() {
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
text="Ready to experience Chrome? Contact us to make a reservation or learn more about our menu. Visit us at 3601 26th St, San Francisco, CA 94110, or reach out via phone or email."
|
||||
text="Ready to experience Chome? Contact us to make a reservation or learn more about our menu. Visit us at 3601 26th St, San Francisco, CA 94110, or reach out via phone or email."
|
||||
animationType="entrance-slide"
|
||||
buttons={[
|
||||
{ text: "Reserve Now", href: "/reservations" },
|
||||
@@ -223,19 +164,15 @@ export default function HomePage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Chrome"
|
||||
copyrightText="© 2025 Chrome Japanese Restaurant. All rights reserved."
|
||||
logoText="Chome"
|
||||
copyrightText="© 2025 Chome Japanese Restaurant. All rights reserved."
|
||||
socialLinks={[
|
||||
{
|
||||
icon: Instagram,
|
||||
href: "https://instagram.com",
|
||||
ariaLabel: "Follow us on Instagram",
|
||||
},
|
||||
href: "https://instagram.com", ariaLabel: "Follow us on Instagram"},
|
||||
{
|
||||
icon: Facebook,
|
||||
href: "https://facebook.com",
|
||||
ariaLabel: "Like us on Facebook",
|
||||
},
|
||||
href: "https://facebook.com", ariaLabel: "Like us on Facebook"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -21,17 +21,10 @@ export default function ReservationsPage() {
|
||||
|
||||
const navItemsWithRoutes = navItems.map((item) => {
|
||||
const routeMap: Record<string, string> = {
|
||||
home: "/",
|
||||
about: "/",
|
||||
menu: "/",
|
||||
gallery: "/gallery",
|
||||
reservations: "/reservations",
|
||||
contact: "/",
|
||||
};
|
||||
home: "/", about: "/", menu: "/", gallery: "/gallery", reservations: "/reservations", contact: "/"};
|
||||
return {
|
||||
...item,
|
||||
href: routeMap[item.id] || "/",
|
||||
};
|
||||
href: routeMap[item.id] || "/"};
|
||||
});
|
||||
|
||||
return (
|
||||
@@ -50,7 +43,7 @@ export default function ReservationsPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={navItems}
|
||||
brandName="Chrome"
|
||||
brandName="Chome"
|
||||
bottomLeftText="Modern Japanese Dining"
|
||||
bottomRightText="San Francisco, CA"
|
||||
/>
|
||||
@@ -58,23 +51,17 @@ export default function ReservationsPage() {
|
||||
|
||||
<div id="reservation-info" data-section="reservation-info">
|
||||
<AboutMetric
|
||||
title="Why Reserve at Chrome?"
|
||||
title="Why Reserve at Chome?"
|
||||
metrics={[
|
||||
{
|
||||
icon: Clock,
|
||||
label: "Operating Hours",
|
||||
value: "Tue-Sun 5-11 PM",
|
||||
},
|
||||
label: "Operating Hours", value: "Tue-Sun 5-11 PM"},
|
||||
{
|
||||
icon: Users,
|
||||
label: "Party Size",
|
||||
value: "2-12 Guests",
|
||||
},
|
||||
label: "Party Size", value: "2-12 Guests"},
|
||||
{
|
||||
icon: Award,
|
||||
label: "Advance Notice",
|
||||
value: "24 Hours Recommended",
|
||||
},
|
||||
label: "Advance Notice", value: "24 Hours Recommended"},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -83,66 +70,45 @@ export default function ReservationsPage() {
|
||||
|
||||
<div id="reservation-features" data-section="reservation-features">
|
||||
<FeatureCardTen
|
||||
title="Dining Options at Chrome"
|
||||
description="Chrome offers multiple dining experiences to suit your needs. Whether you're looking for an intimate dinner, a business meeting, or a special celebration, we have the perfect setting for your occasion."
|
||||
title="Dining Options at Chome"
|
||||
description="Chome offers multiple dining experiences to suit your needs. Whether you're looking for an intimate dinner, a business meeting, or a special celebration, we have the perfect setting for your occasion."
|
||||
features={[
|
||||
{
|
||||
id: "counter-seating",
|
||||
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?_wi=2",
|
||||
imageAlt: "Restaurant counter seating",
|
||||
},
|
||||
id: "counter-seating", 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?_wi=2", imageAlt: "Restaurant counter seating"},
|
||||
items: [
|
||||
{
|
||||
icon: Award,
|
||||
text: "Chef interaction",
|
||||
},
|
||||
text: "Chef interaction"},
|
||||
{
|
||||
icon: Sparkles,
|
||||
text: "Premium experience",
|
||||
},
|
||||
text: "Premium experience"},
|
||||
],
|
||||
reverse: false,
|
||||
},
|
||||
{
|
||||
id: "private-dining",
|
||||
title: "Private Dining Spaces",
|
||||
description: "Perfect for special occasions and corporate events, our private dining areas provide an exclusive atmosphere while maintaining Chrome's signature elegance and service excellence.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-meeting-family-reunion_23-2149153757.jpg",
|
||||
imageAlt: "Elegant private dining experience",
|
||||
},
|
||||
id: "private-dining", title: "Private Dining Spaces", description: "Perfect for special occasions and corporate events, our private dining areas provide an exclusive atmosphere while maintaining Chome's signature elegance and service excellence.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-meeting-family-reunion_23-2149153757.jpg", imageAlt: "Elegant private dining experience"},
|
||||
items: [
|
||||
{
|
||||
icon: Home,
|
||||
text: "Exclusive ambiance",
|
||||
},
|
||||
text: "Exclusive ambiance"},
|
||||
{
|
||||
icon: Zap,
|
||||
text: "Personalized service",
|
||||
},
|
||||
text: "Personalized service"},
|
||||
],
|
||||
reverse: true,
|
||||
},
|
||||
{
|
||||
id: "table-dining",
|
||||
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?_wi=2",
|
||||
imageAlt: "Fine dining table setting",
|
||||
},
|
||||
id: "table-dining", 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?_wi=2", imageAlt: "Fine dining table setting"},
|
||||
items: [
|
||||
{
|
||||
icon: Leaf,
|
||||
text: "Relaxed elegance",
|
||||
},
|
||||
text: "Relaxed elegance"},
|
||||
{
|
||||
icon: Shield,
|
||||
text: "Exceptional service",
|
||||
},
|
||||
text: "Exceptional service"},
|
||||
],
|
||||
reverse: false,
|
||||
},
|
||||
@@ -155,40 +121,31 @@ export default function ReservationsPage() {
|
||||
|
||||
<div id="reservation-contact" data-section="reservation-contact">
|
||||
<ContactText
|
||||
text="Ready to make a reservation at Chrome? Contact us directly at (415) 555-0123 or email reservations@chromesf.com. We're open Tuesday through Sunday from 5 PM to 11 PM. Walk-ins are welcome subject to availability, but we recommend advance reservations to ensure the best seating."
|
||||
text="Ready to make a reservation at Chome? Contact us directly at (415) 555-0123 or email reservations@chomesf.com. We're open Tuesday through Sunday from 5 PM to 11 PM. Walk-ins are welcome subject to availability, but we recommend advance reservations to ensure the best seating."
|
||||
animationType="entrance-slide"
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Us",
|
||||
href: "/",
|
||||
},
|
||||
text: "Call Us", href: "/"},
|
||||
{
|
||||
text: "Email Reservations",
|
||||
href: "/",
|
||||
},
|
||||
text: "Email Reservations", href: "/"},
|
||||
]}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Chrome"
|
||||
copyrightText="© 2025 Chrome Japanese Restaurant. All rights reserved."
|
||||
logoText="Chome"
|
||||
copyrightText="© 2025 Chome Japanese Restaurant. All rights reserved."
|
||||
socialLinks={[
|
||||
{
|
||||
icon: Instagram,
|
||||
href: "https://instagram.com",
|
||||
ariaLabel: "Follow us on Instagram",
|
||||
},
|
||||
href: "https://instagram.com", ariaLabel: "Follow us on Instagram"},
|
||||
{
|
||||
icon: Facebook,
|
||||
href: "https://facebook.com",
|
||||
ariaLabel: "Like us on Facebook",
|
||||
},
|
||||
href: "https://facebook.com", ariaLabel: "Like us on Facebook"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user