From 7c601e4bb9fd032049e279b86d41c3dea11f01ce Mon Sep 17 00:00:00 2001 From: development Date: Sun, 25 Jan 2026 18:17:09 +0000 Subject: [PATCH 1/3] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index cb23130..3a400cf 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -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() { ); -} \ No newline at end of file +} -- 2.49.1 From f71d45d53d1c5b7ef5a426b5d2a3bae4ae9ab18d Mon Sep 17 00:00:00 2001 From: development Date: Sun, 25 Jan 2026 18:17:09 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 519f812..48d037a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1263,4 +1263,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} -- 2.49.1 From 280a7b6305d64369166ce121d5e81ec0705b1e50 Mon Sep 17 00:00:00 2001 From: development Date: Sun, 25 Jan 2026 18:17:10 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 43 +++++++++++++++++++++++++++---------------- 1 file changed, 27 insertions(+), 16 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index eaf6524..e0ee3cd 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -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() {
- +

Locally Sourced Excellence

+

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.

+
+ ), + 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: ( +
+

Intimate Luxury Setting

+

Panoramic mountain views that inspire. Minimalist Japanese design creating serenity. Private dining rooms for special occasions. Curated lighting and acoustics for the perfect ambiance.

+
+ ), + 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: ( +
+

Culinary Mastery

+

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.

+
+ ), + 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() { ); -} \ No newline at end of file +} -- 2.49.1