Update src/app/contact/page.tsx

This commit is contained in:
2026-03-15 14:27:13 +00:00
parent 8356321c85
commit 6679140a4e

View File

@@ -30,8 +30,7 @@ export default function ContactPage() {
? "/gallery"
: item.id === "reservations"
? "/reservations"
: "/contact",
}));
: "/contact"}));
return (
<ThemeProvider
@@ -48,7 +47,7 @@ export default function ContactPage() {
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
brandName="Chrome"
brandName="Chome"
navItems={navItems}
bottomLeftText="Modern Japanese Dining"
bottomRightText="San Francisco, CA"
@@ -57,40 +56,31 @@ export default function ContactPage() {
<div id="contact" data-section="contact">
<ContactText
text="Ready to experience Chrome? Contact us to make a reservation or learn more about our menu. Visit us at 3601 26th St, San Francisco, CA 94110, or reach out via phone or email."
text="Ready to experience Chome? Contact us to make a reservation or learn more about our menu. Visit us at 3601 26th St, San Francisco, CA 94110, or reach out via phone or email."
animationType="entrance-slide"
buttons={[
{
text: "Reserve Now",
href: "/reservations",
},
text: "Reserve Now", href: "/reservations"},
{
text: "View Contact Info",
href: "/contact",
},
text: "View Contact Info", href: "/contact"},
]}
background={{
variant: "plain",
}}
variant: "plain"}}
useInvertedBackground={true}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Chrome"
copyrightText="© 2025 Chrome Japanese Restaurant. All rights reserved."
logoText="Chome"
copyrightText="© 2025 Chome Japanese Restaurant. All rights reserved."
socialLinks={[
{
icon: Instagram,
href: "https://instagram.com",
ariaLabel: "Follow us on Instagram",
},
href: "https://instagram.com", ariaLabel: "Follow us on Instagram"},
{
icon: Facebook,
href: "https://facebook.com",
ariaLabel: "Like us on Facebook",
},
href: "https://facebook.com", ariaLabel: "Like us on Facebook"},
]}
/>
</div>