Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-05-04 15:57:52 +00:00

View File

@@ -80,7 +80,7 @@ export default function LandingPage() {
products={[
{ id: "p1", name: "Iced Signature Latte", price: "¥550", imageSrc: "http://img.b2bpic.net/free-photo/ice-coffee_1339-3417.jpg" },
{ id: "p2", name: "Almond Croissant", price: "¥420", imageSrc: "http://img.b2bpic.net/free-photo/rollcake-with-eclairs-pie-slices_114579-20806.jpg" },
{ id: "p3", name: "Chocolate Ganache Cake", price: "¥600", imageSrc: "http://img.b2bpic.net/free-photo/chocolate-fudge-cake_1339-7271.jpg" },
{ id: "p3", name: "Chocolate Ganache Cake", price: "¥600", imageSrc: "http://img.b2bpic.net/chocolate-fudge-cake_1339-7271.jpg" },
{ id: "p4", name: "Strawberry Matcha", price: "¥650", imageSrc: "http://img.b2bpic.net/free-photo/glass-strawberry-milkshake-with-whipped-cream-strawberry-top_140725-4879.jpg" },
{ id: "p5", name: "Artisan Ham Sandwich", price: "¥750", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-salmon-sandwich-with-olives-onions_23-2148640243.jpg" },
{ id: "p6", name: "Classic Cappuccino", price: "¥500", imageSrc: "http://img.b2bpic.net/free-photo/white-coffee-cup-with-spoon-with-cafe-background_157027-4444.jpg" },
@@ -125,11 +125,11 @@ export default function LandingPage() {
<FaqSplitText
useInvertedBackground={false}
faqs={[
{ id: "f1", title: "Do you offer Wi-Fi?", content: "Yes, we provide complimentary high-speed Wi-Fi for all guests." },
{ id: "f2", title: "Are there vegan options?", content: "Absolutely! We have plant-based milk alternatives and select vegan snacks." },
{ id: "f3", title: "Can I reserve a table?", content: "For groups of 5 or more, please call us in advance to reserve." },
{ id: "f1", title: "Wi-Fiは利用できますか", content: "はい、すべてのお客様に無料の高速Wi-Fiを提供しています。" },
{ id: "f2", title: "ビーガン向けのオプションはありますか?", content: "はい、植物性ミルクの代替品やビーガン向けのスナックをご用意しております。" },
{ id: "f3", title: "席の予約はできますか?", content: "5名以上のグループの場合は、事前にお電話にてご予約をお願いいたします。" },
]}
sideTitle="Frequently Asked"
sideTitle="よくある質問"
faqsAnimation="slide-up"
/>
</div>
@@ -138,9 +138,9 @@ export default function LandingPage() {
<ContactSplit
useInvertedBackground={true}
background={{ variant: "plain" }}
tag="Visit Us"
title="Stay Connected"
description="Sign up for our newsletter to hear about new seasonal drink arrivals."
tag="店舗情報"
title="お問い合わせ"
description="ニュースレターに登録して、季節限定のドリンク情報を受け取りましょう。"
imageSrc="http://img.b2bpic.net/free-photo/couple-enjoying-coffee-shop_23-2148366675.jpg"
mediaAnimation="slide-up"
/>
@@ -151,16 +151,16 @@ export default function LandingPage() {
logoText="Kuraru Cafe"
columns={[
{
title: "Navigation", items: [
{ label: "Home", href: "#hero" },
{ label: "Menu", href: "#products" },
{ label: "Contact", href: "#contact" },
title: "メニュー", items: [
{ label: "ホーム", href: "#hero" },
{ label: "メニュー", href: "#products" },
{ label: "お問い合わせ", href: "#contact" },
],
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
title: "法律", items: [
{ label: "プライバシーポリシー", href: "#" },
{ label: "利用規約", href: "#" },
],
},
]}
@@ -169,4 +169,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}