Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -84,7 +84,8 @@ export default function BlogPage() {
|
||||
const url = `${apiUrl}/posts/${projectId}?status=published`;
|
||||
const response = await fetch(url, {
|
||||
method: "GET", headers: {
|
||||
"Content-Type": "application/json"},
|
||||
"Content-Type": "application/json"
|
||||
},
|
||||
});
|
||||
|
||||
if (response.ok) {
|
||||
@@ -165,4 +166,4 @@ export default function BlogPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1263,4 +1263,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
"use client"
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
||||
import TimelinePhoneView from '@/components/cardStack/layouts/timelines/TimelinePhoneView';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
||||
@@ -73,27 +73,38 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardTwelve
|
||||
<TimelinePhoneView
|
||||
title="What Sets Us Apart"
|
||||
description="Discover the distinctive elements that make our dining experience truly exceptional"
|
||||
textboxLayout="default"
|
||||
animationType="opacity"
|
||||
useInvertedBackground="invertDefault"
|
||||
features={[
|
||||
showTextBox={true}
|
||||
items={[
|
||||
{
|
||||
id: "seasonal", label: "Seasonal", title: "Locally Sourced Excellence", items: [
|
||||
"Mountain vegetables and herbs", "Fresh fish from Niseko waters", "Rotating menu with seasons", "Direct relationships with farmers"
|
||||
]
|
||||
trigger: "trigger-1", content: (
|
||||
<div>
|
||||
<h3 className="text-2xl font-semibold mb-4">Locally Sourced Excellence</h3>
|
||||
<p className="text-foreground/80">Mountain vegetables and herbs picked at peak season. Fresh fish from Niseko waters. Rotating menu that honors the seasons. Direct relationships with local farmers and producers.</p>
|
||||
</div>
|
||||
),
|
||||
imageOne: "https://img.b2bpic.net/free-photo/top-view-set-baked-sushi-rolls-with-shrimps-served-with-wasabi-ginger-plate-wood_141793-12009.jpg", imageAlt: "Fresh local ingredients", imageTwo: "https://img.b2bpic.net/free-photo/front-view-cook-preparing-meal-designing-meal-inside-plate-fry-meat-food-meal_140725-26012.jpg", imageAltTwo: "Chef preparation"
|
||||
},
|
||||
{
|
||||
id: "ambiance", label: "Ambiance", title: "Intimate Luxury Setting", items: [
|
||||
"Panoramic mountain views", "Minimalist Japanese design", "Private dining rooms available", "Curated lighting and acoustics"
|
||||
]
|
||||
trigger: "trigger-2", content: (
|
||||
<div>
|
||||
<h3 className="text-2xl font-semibold mb-4">Intimate Luxury Setting</h3>
|
||||
<p className="text-foreground/80">Panoramic mountain views that inspire. Minimalist Japanese design creating serenity. Private dining rooms for special occasions. Curated lighting and acoustics for the perfect ambiance.</p>
|
||||
</div>
|
||||
),
|
||||
imageOne: "https://img.b2bpic.net/free-photo/there-are-glasses-wine-water-table-with-white-cloth-are-ready-dining_613910-17447.jpg", imageAltOne: "Elegant dining room", imageTwo: "https://img.b2bpic.net/free-photo/top-view-classic-japanese-sushi-with-red-caviar-bamboo-leaf-served-with-ginger-wasabi-sauce-plate_141793-11791.jpg", imageAltTwo: "Plated dish"
|
||||
},
|
||||
{
|
||||
id: "expertise", label: "Expertise", title: "Culinary Mastery", items: [
|
||||
"Award-winning head chef", "Years of fine dining experience", "Traditional and modern techniques", "Michelin-standard quality"
|
||||
]
|
||||
trigger: "trigger-3", content: (
|
||||
<div>
|
||||
<h3 className="text-2xl font-semibold mb-4">Culinary Mastery</h3>
|
||||
<p className="text-foreground/80">Award-winning head chef with decades of fine dining expertise. Traditional and modern techniques harmoniously blended. Michelin-standard quality in every plate. Passionate commitment to culinary excellence.</p>
|
||||
</div>
|
||||
),
|
||||
imageOne: "https://img.b2bpic.net/free-photo/top-view-nigiri-sushi-with-tuna-bamboo-leaf-served-with-pickled-ginger-slices-wasabi-plate_141793-8469.jpg", imageAltOne: "Premium sushi", imageTwo: "https://img.b2bpic.net/free-photo/front-view-cook-preparing-meal-designing-meal-inside-plate-fry-meat-food-meal_140725-26012.jpg", imageAltTwo: "Chef artistry"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
@@ -211,4 +222,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user