Update src/app/contact/page.tsx

This commit is contained in:
2026-05-28 17:00:06 +00:00
parent 178dad26e4
commit 1117e87ba5

View File

@@ -26,27 +26,17 @@ export default function LandingPage() {
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Menu",
id: "/menu",
},
name: "Menu", id: "/menu"},
{
name: "About Us",
id: "/about",
},
name: "About Us", id: "/about"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="La Unión Restaurant"
button={{
text: "Order Now",
href: "/menu",
}}
text: "Order Now", href: "/menu"}}
/>
</div>
@@ -57,28 +47,17 @@ export default function LandingPage() {
description="We'd love to hear from you! Whether it's for reservations, catering inquiries, or any questions about our menu, feel free to reach out. We're here to help!"
inputs={[
{
name: "name",
type: "text",
placeholder: "Your Name",
required: true,
name: "name", type: "text", placeholder: "Your Name", required: true,
},
{
name: "email",
type: "email",
placeholder: "Your Email",
required: true,
name: "email", type: "email", placeholder: "Your Email", required: true,
},
{
name: "phone",
type: "tel",
placeholder: "Your Phone Number (Optional)",
required: false,
name: "phone", type: "tel", placeholder: "Your Phone Number (Optional)", required: false,
},
]}
textarea={{
name: "message",
placeholder: "Your Message",
rows: 4,
name: "message", placeholder: "Your Message", rows: 4,
required: true,
}}
imageSrc="http://img.b2bpic.net/free-photo/pink-location-pin-map_84443-94391.jpg"
@@ -95,25 +74,13 @@ export default function LandingPage() {
useInvertedBackground={true}
faqs={[
{
id: "1",
title: "Do you offer catering services?",
content: "Yes, La Unión Restaurant offers catering for various events, including corporate lunches, private parties, and family gatherings. Please contact us to discuss your specific needs and menu options.",
},
id: "1", title: "Do you offer catering services?", content: "Yes, La Unión Restaurant offers catering for various events, including corporate lunches, private parties, and family gatherings. Please contact us to discuss your specific needs and menu options."},
{
id: "2",
title: "Can I make a reservation?",
content: "We do not typically take reservations for small groups, but we can accommodate large parties. For groups of 8 or more, please call us in advance to ensure availability.",
},
id: "2", title: "Can I make a reservation?", content: "We do not typically take reservations for small groups, but we can accommodate large parties. For groups of 8 or more, please call us in advance to ensure availability."},
{
id: "3",
title: "Do you have vegetarian or vegan options?",
content: "Yes, we offer several vegetarian and vegan-friendly options on our menu. Please inform your server about any dietary restrictions, and we'll be happy to guide you through our offerings or customize a dish.",
},
id: "3", title: "Do you have vegetarian or vegan options?", content: "Yes, we offer several vegetarian and vegan-friendly options on our menu. Please inform your server about any dietary restrictions, and we'll be happy to guide you through our offerings or customize a dish."},
{
id: "4",
title: "What are your hours of operation?",
content: "Our current hours are Monday-Saturday: 10 AM - 9 PM, and Sunday: 10 AM - 8 PM. Please check our social media or call us for any holiday hour changes.",
},
id: "4", title: "What are your hours of operation?", content: "Our current hours are Monday-Saturday: 10 AM - 9 PM, and Sunday: 10 AM - 8 PM. Please check our social media or call us for any holiday hour changes."},
]}
imageSrc="http://img.b2bpic.net/free-photo/top-view-fresh-cherry-tomatoes-inside-plate-with-different-seasonings-white-surface_140725-66578.jpg"
imageAlt="Food ingredients for FAQs"
@@ -127,53 +94,36 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
itemClassName="font-semibold text-lg hover:text-primary-cta transition-colors duration-200"
columns={[
{
items: [
{
label: "Home",
href: "/",
},
label: "Home", href: "/"},
{
label: "Menu",
href: "/menu",
},
label: "Menu", href: "/menu"},
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
],
},
{
items: [
{
label: "Order Online",
href: "/menu",
},
label: "Order Online", href: "/menu"},
{
label: "Reservations",
href: "/contact",
},
label: "Reservations", href: "/contact"},
{
label: "Catering",
href: "/contact",
},
label: "Catering", href: "/contact"},
],
},
{
items: [
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
],
},
]}
@@ -183,4 +133,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}