Update src/app/contact/page.tsx

This commit is contained in:
2026-04-05 12:50:59 +00:00
parent 6eaa2965ff
commit 26f08fac97

View File

@@ -25,37 +25,21 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Menu",
id: "/menu",
},
{
name: "About",
id: "/about",
},
{
name: "Order",
id: "/order",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "About", id: "/about" },
{ name: "Order", id: "/order" },
{ name: "Contact", id: "/contact" },
]}
brandName="Java Cafe"
button={{ text: "Order Now", href: "/order" }}
/>
</div>
<div id="contact-section" data-section="contact-section">
<ContactSplit
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
tag="Visit Us"
title="Java Cafe Location"
description="Open Daily 7:00 AM - 9:00 PM. We are located in the center of town. Stop by for a cup of joy!"
@@ -73,16 +57,8 @@ export default function LandingPage() {
description="How to find us and reach out."
faqsAnimation="slide-up"
faqs={[
{
id: "q1",
title: "Where is the parking?",
content: "There is public parking just behind our cafe.",
},
{
id: "q2",
title: "Can I book a party?",
content: "Yes, contact us via email for event inquiries.",
},
{ id: "q1", title: "Where is the parking?", content: "There is public parking just behind our cafe." },
{ id: "q2", title: "Can I book a party?", content: "Yes, contact us via email for event inquiries." },
]}
/>
</div>
@@ -90,53 +66,9 @@ export default function LandingPage() {
<div id="footer-main" data-section="footer-main">
<FooterSimple
columns={[
{
title: "Navigate",
items: [
{
label: "Home",
href: "/",
},
{
label: "Menu",
href: "/menu",
},
{
label: "Order",
href: "/order",
},
],
},
{
title: "Social",
items: [
{
label: "Instagram",
href: "#",
},
{
label: "Facebook",
href: "#",
},
{
label: "Twitter",
href: "#",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
{ title: "Navigate", items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }, { label: "Order", href: "/order" }] },
{ title: "Social", items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }, { label: "Twitter", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
]}
bottomLeftText="© 2024 Java Cafe Inc."
bottomRightText="Crafted with love"