6 Commits

Author SHA1 Message Date
7a068e607d Bob AI: Can you make the buttons look more 3d and round th... 2026-02-07 18:52:27 +00:00
e50338a460 Merge version_6 into main
Merge version_6 into main
2026-02-07 18:48:08 +00:00
4908606eef Bob AI: [Block: hero-billboard-carousel|Hero Billboard Car... 2026-02-07 18:47:34 +00:00
e8638d5a37 Merge version_5 into main
Merge version_5 into main
2026-02-07 18:44:39 +00:00
9515459fc5 Bob AI: I don't like that one it doesn't really work well ... 2026-02-07 18:44:05 +00:00
8854f4f0bc Merge version_4 into main
Merge version_4 into main
2026-02-07 18:42:57 +00:00
2 changed files with 39 additions and 1 deletions

View File

@@ -12,6 +12,7 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { Award, ChefHat, Users, Sparkles } from "lucide-react"; import { Award, ChefHat, Users, Sparkles } from "lucide-react";
import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog'; import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog';
import SplitAbout from '@/components/sections/about/SplitAbout'; import SplitAbout from '@/components/sections/about/SplitAbout';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -318,6 +319,43 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="about" data-section="about">
<SplitAbout
title="Why Choose Omakase Niseko?"
description="Experience the essence of Japanese cuisine in the heart of Niseko. Here's why we stand out."
bulletPoints={[
{ title: "Seasonal Ingredients", description: "Using the freshest, locally-sourced ingredients to create each dish." },
{ title: "Master Chefs", description: "Crafting meals with precision and passion, led by our expert chefs." },
{ title: "Warm Ambiance", description: "Enjoy a cozy and inviting atmosphere that enhances your dining experience." },
{ title: "Exclusive Events", description: "Participate in special events and private dining experiences." }
]}
imageSrc="https://images.unsplash.com/photo-1519681393784-d120267933ba?w=800&q=80"
imageAlt="Chef preparing a dish in a traditional Japanese kitchen"
imagePosition="right"
textboxLayout="stacked"
useInvertedBackground="never"
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboardCarousel
title="Discover Omakase Niseko"
description="Experience the ultimate in Japanese dining with our exclusive Omakase menu. Each dish is a masterpiece crafted by our skilled chefs."
background={{ variant: "downward-rays-animated" }}
tag="Exclusive"
buttons={[
{ label: "Book Now", href: "/book", variant: "primary" },
{ label: "Learn More", href: "/about", variant: "secondary" }
]}
mediaItems={[
{ imageSrc: "https://images.unsplash.com/photo-1519681393784-d120267933ba?w=800&q=80", imageAlt: "Omakase Niseko Dining Experience" },
{ imageSrc: "https://images.unsplash.com/photo-1519681393784-d120267933ba?w=800&q=80", imageAlt: "Omakase Niseko Chef Preparing Dish" },
{ imageSrc: "https://images.unsplash.com/photo-1519681393784-d120267933ba?w=800&q=80", imageAlt: "Omakase Niseko Customer Enjoying Meal" }
]}
ariaLabel="Hero section showcasing Omakase Niseko dining experience"
/>
</div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseReveal <FooterBaseReveal
columns={[ columns={[

View File

@@ -118,7 +118,7 @@ const HeroBillboardCarousel = ({
descriptionClassName={cls("text-base md:text-lg leading-[1.2]", descriptionClassName)} descriptionClassName={cls("text-base md:text-lg leading-[1.2]", descriptionClassName)}
tagClassName={cls("px-3 py-1 text-sm rounded-theme card text-foreground inline-flex items-center gap-2 mb-3", tagClassName)} tagClassName={cls("px-3 py-1 text-sm rounded-theme card text-foreground inline-flex items-center gap-2 mb-3", tagClassName)}
buttonContainerClassName={cls("flex flex-wrap gap-4 mt-3", buttonContainerClassName)} buttonContainerClassName={cls("flex flex-wrap gap-4 mt-3", buttonContainerClassName)}
buttonClassName={buttonClassName} buttonClassName={cls("rounded-full shadow-3d", buttonClassName)}
buttonTextClassName={buttonTextClassName} buttonTextClassName={buttonTextClassName}
center={true} center={true}
/> />