Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7a068e607d | |||
| e50338a460 | |||
| 4908606eef | |||
| e8638d5a37 |
@@ -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 (
|
||||||
@@ -336,6 +337,25 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</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={[
|
||||||
|
|||||||
@@ -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}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user