6 Commits

Author SHA1 Message Date
28d031932d Merge version_3 into main
Merge version_3 into main
2026-06-06 08:13:21 +00:00
3b8def7de3 Update src/app/contact/page.tsx 2026-06-06 08:13:18 +00:00
faec44d954 Update src/app/cataract-surgery/page.tsx 2026-06-06 08:13:18 +00:00
536f13d302 Update src/app/about/page.tsx 2026-06-06 08:13:18 +00:00
83e49065d6 Merge version_2 into main
Merge version_2 into main
2026-06-06 08:02:02 +00:00
75878d6158 Merge version_2 into main
Merge version_2 into main
2026-06-06 08:01:30 +00:00
3 changed files with 57 additions and 68 deletions

View File

@@ -31,8 +31,9 @@ export default function AboutPage() {
{ name: "小児眼科", id: "/pediatric-ophthalmology" },
{ name: "近視治療", id: "/myopia-treatment" },
{ name: "患者様の声", id: "/#testimonials" },
{ name: "よくある質問", id: "/#faq" },
{ name: "お知らせ", id: "/#blog" },
{ name: "お問い合わせ", id: "/#contact" },
{ name: "お問い合わせ", id: "/contact" }
]}
brandName="馬場眼科医院"
/>
@@ -63,23 +64,23 @@ export default function AboutPage() {
{ label: "白内障手術", href: "/cataract-surgery" },
{ label: "小児眼科", href: "/pediatric-ophthalmology" },
{ label: "近視治療", href: "/myopia-treatment" },
{ label: "WEB予約", href: "/#contact" },
],
{ label: "WEB予約", href: "/contact" }
]
},
{
title: "当院について", items: [
{ label: "ホーム", href: "/" },
{ label: "当院について", href: "/about" },
{ label: "患者様の声", href: "/#testimonials" },
{ label: "よくある質問", href: "/#faq" },
],
{ label: "よくある質問", href: "/#faq" }
]
},
{
title: "アクセス", items: [
{ label: "交通案内", href: "/#contact" },
{ label: "駐車場", href: "/#contact" },
],
},
{ label: "交通案内", href: "/contact" },
{ label: "駐車場", href: "/contact" }
]
}
]}
copyrightText="© 2024 馬場眼科医院 All rights reserved."
/>
@@ -87,4 +88,4 @@ export default function AboutPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -31,8 +31,9 @@ export default function CataractSurgeryPage() {
{ name: "小児眼科", id: "/pediatric-ophthalmology" },
{ name: "近視治療", id: "/myopia-treatment" },
{ name: "患者様の声", id: "/#testimonials" },
{ name: "よくある質問", id: "/#faq" },
{ name: "お知らせ", id: "/#blog" },
{ name: "お問い合わせ", id: "/#contact" },
{ name: "お問い合わせ", id: "/contact" }
]}
brandName="馬場眼科医院"
/>
@@ -48,11 +49,14 @@ export default function CataractSurgeryPage() {
tagAnimation="slide-up"
accordionItems={[
{
id: "surgical-flow", title: "手術の流れ", content: "初診から手術、術後ケアまで、専門スタッフが丁寧にサポートいたします。安心して手術に臨んでいただけるよう、事前説明を徹底します."},
id: "surgical-flow", title: "手術の流れ", content: "初診から手術、術後ケアまで、専門スタッフが丁寧にサポートいたします。安心して手術に臨んでいただけるよう、事前説明を徹底します."
},
{
id: "lens-options", title: "選べる眼内レンズ", content: "単焦点レンズから多焦点レンズまで、患者様のニーズに合わせて最適な眼内レンズをご提案。見え方の質を最大限に高めます."},
id: "lens-options", title: "選べる眼内レンズ", content: "単焦点レンズから多焦点レンズまで、患者様のニーズに合わせて最適な眼内レンズをご提案。見え方の質を最大限に高めます."
},
{
id: "day-surgery-benefits", title: "日帰り手術のメリット", content: "入院の必要がなく、術後すぐに自宅に戻れるため、日常生活への復帰がスムーズです。ご家族のサポートも受けやすい環境です."},
id: "day-surgery-benefits", title: "日帰り手術のメリット", content: "入院の必要がなく、術後すぐに自宅に戻れるため、日常生活への復帰がスムーズです。ご家族のサポートも受けやすい環境です."
}
]}
imageSrc="http://img.b2bpic.net/free-photo/high-angle-glasses-letters_23-2148429614.jpg"
imageAlt="白内障手術の説明イラスト"
@@ -70,23 +74,23 @@ export default function CataractSurgeryPage() {
{ label: "白内障手術", href: "/cataract-surgery" },
{ label: "小児眼科", href: "/pediatric-ophthalmology" },
{ label: "近視治療", href: "/myopia-treatment" },
{ label: "WEB予約", href: "/#contact" },
],
{ label: "WEB予約", href: "/contact" }
]
},
{
title: "当院について", items: [
{ label: "ホーム", href: "/" },
{ label: "当院について", href: "/about" },
{ label: "患者様の声", href: "/#testimonials" },
{ label: "よくある質問", href: "/#faq" },
],
{ label: "よくある質問", href: "/#faq" }
]
},
{
title: "アクセス", items: [
{ label: "交通案内", href: "/#contact" },
{ label: "駐車場", href: "/#contact" },
],
},
{ label: "交通案内", href: "/contact" },
{ label: "駐車場", href: "/contact" }
]
}
]}
copyrightText="© 2024 馬場眼科医院 All rights reserved."
/>
@@ -94,4 +98,4 @@ export default function CataractSurgeryPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -25,22 +25,15 @@ export default function ContactPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "ホーム", id: "#home"},
{
name: "当院について", id: "#about"},
{
name: "白内障手術", id: "#cataract-surgery"},
{
name: "小児眼科", id: "#pediatric-ophthalmology"},
{
name: "近視治療", id: "#myopia-treatment"},
{
name: "患者様の声", id: "#testimonials"},
{
name: "お知らせ", id: "#blog"},
{
name: "お問い合わせ", id: "/contact"},
{ name: "ホーム", id: "/" },
{ name: "当院について", id: "/about" },
{ name: "白内障手術", id: "/cataract-surgery" },
{ name: "小児眼科", id: "/pediatric-ophthalmology" },
{ name: "近視治療", id: "/myopia-treatment" },
{ name: "患者様の声", id: "/#testimonials" },
{ name: "よくある質問", id: "/#faq" },
{ name: "お知らせ", id: "/#blog" },
{ name: "お問い合わせ", id: "/contact" }
]}
brandName="馬場眼科医院"
/>
@@ -61,19 +54,20 @@ export default function ContactPage() {
休診日: 日曜・祝日"
inputs={[
{
name: "name", type: "text", placeholder: "お名前", required: true,
name: "name", type: "text", placeholder: "お名前", required: true
},
{
name: "email", type: "email", placeholder: "メールアドレス", required: true,
},
name: "email", type: "email", placeholder: "メールアドレス", required: true
}
]}
multiSelect={{
name: "inquiry_type", label: "お問い合わせ内容", options: [
"WEB予約について", "白内障手術について", "小児眼科について", "近視治療について", "その他"],
"WEB予約について", "白内障手術について", "小児眼科について", "近視治療について", "その他"
]
}}
textarea={{
name: "message", placeholder: "メッセージをどうぞ", rows: 5,
required: true,
required: true
}}
imageSrc="http://img.b2bpic.net/free-photo/serious-young-blonde-lady-walking-outdoors-looking-aside_171337-19431.jpg"
imageAlt="清潔な眼科受付"
@@ -89,36 +83,26 @@ export default function ContactPage() {
columns={[
{
title: "診療案内", items: [
{
label: "白内障手術", href: "#cataract-surgery"},
{
label: "小児眼科", href: "#pediatric-ophthalmology"},
{
label: "近視治療", href: "#myopia-treatment"},
{
label: "WEB予約", href: "/contact"},
],
{ label: "白内障手術", href: "/cataract-surgery" },
{ label: "小児眼科", href: "/pediatric-ophthalmology" },
{ label: "近視治療", href: "/myopia-treatment" },
{ label: "WEB予約", href: "/contact" }
]
},
{
title: "当院について", items: [
{
label: "ホーム", href: "#home"},
{
label: "当院について", href: "#about"},
{
label: "患者様の声", href: "#testimonials"},
{
label: "よくある質問", href: "#faq"},
],
{ label: "ホーム", href: "/" },
{ label: "当院について", href: "/about" },
{ label: "患者様の声", href: "/#testimonials" },
{ label: "よくある質問", href: "/#faq" }
]
},
{
title: "アクセス", items: [
{
label: "交通案内", href: "#"},
{
label: "駐車場", href: "#"},
],
},
{ label: "交通案内", href: "/contact" },
{ label: "駐車場", href: "/contact" }
]
}
]}
copyrightText="© 2024 馬場眼科医院 All rights reserved."
/>