Update src/app/about/page.tsx

This commit is contained in:
2026-06-06 08:13:18 +00:00
parent 83e49065d6
commit 536f13d302

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>
);
}
}