Merge version_3 into main #6

Merged
bender merged 1 commits from version_3 into main 2026-05-01 16:06:35 +00:00

View File

@@ -11,7 +11,8 @@ import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import { Coffee, Utensils } from "lucide-react";
import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
import { Coffee, Utensils, Camera } from "lucide-react";
export default function LandingPage() {
return (
@@ -34,6 +35,7 @@ export default function LandingPage() {
{ name: "ホーム", id: "hero" },
{ name: "こだわり", id: "about" },
{ name: "メニュー", id: "product" },
{ name: "ギャラリー", id: "gallery" },
{ name: "店舗情報", id: "contact" },
]}
brandName="Ken Coffee"
@@ -67,6 +69,22 @@ export default function LandingPage() {
/>
</div>
<div id="gallery" data-section="gallery">
<TeamCardTwo
title="ギャラリー"
description="お店の日常風景を切り取りました。"
textboxLayout="default"
useInvertedBackground={false}
animationType="blur-reveal"
gridVariant="three-columns-all-equal-width"
members={[
{ id: "g1", name: "こだわりの豆", role: "Roastery", description: "厳選された最高品質の豆を自家焙煎しています。", imageSrc: "https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?q=80&w=500" },
{ id: "g2", name: "淹れたての香り", role: "Brewing", description: "丁寧なハンドドリップで香りを最大限に引き出します。", imageSrc: "https://images.unsplash.com/photo-1541167760496-1628856ab77d?q=80&w=500" },
{ id: "g3", name: "くつろぎの空間", role: "Interior", description: "心穏やかな時間をお過ごしいただけます。", imageSrc: "https://images.unsplash.com/photo-1501339847302-ac426a4a7cbb?q=80&w=500" },
]}
/>
</div>
<div id="features" data-section="features">
<FeatureCardTwentyFive
animationType="slide-up"
@@ -139,7 +157,7 @@ export default function LandingPage() {
<FooterLogoEmphasis
columns={[
{ items: [{ label: "ホーム", href: "#hero" }, { label: "こだわり", href: "#about" }] },
{ items: [{ label: "メニュー", href: "#product" }, { label: "お問い合わせ", href: "#contact" }] },
{ items: [{ label: "メニュー", href: "#product" }, { label: "ギャラリー", href: "#gallery" }, { label: "お問い合わせ", href: "#contact" }] },
]}
logoText="Ken Coffee"
/>