Update src/app/contact/page.tsx

This commit is contained in:
2026-06-11 00:58:59 +00:00
parent b995fbd3e2
commit d65ba307aa

View File

@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter'; import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterSimple from '@/components/sections/footer/FooterSimple'; import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -22,41 +22,26 @@ export default function LandingPage() {
> >
<ReactLenis root> <ReactLenis root>
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingInline <NavbarStyleCentered
navItems={[ navItems={[
{ {
name: "Home", name: "Home", id: "/"},
id: "/",
},
{ {
name: "Menu", name: "Menu", id: "/menu"},
id: "/menu",
},
{ {
name: "Offers", name: "Offers", id: "/offers"},
id: "/offers",
},
{ {
name: "Branches", name: "Branches", id: "/branches"},
id: "/branches",
},
{ {
name: "About Us", name: "About Us", id: "/about"},
id: "/about",
},
{ {
name: "Contact", name: "Contact", id: "/contact"},
id: "/contact",
},
]} ]}
logoSrc="http://img.b2bpic.net/free-vector/set-hand-drawn-hen-logos_23-2147626216.jpg" logoSrc="http://img.b2bpic.net/free-vector/set-hand-drawn-hen-logos_23-2147626216.jpg"
logoAlt="Fried Chicken Logo" logoAlt="Fried Chicken Logo"
brandName="Fried Chicken" brandName="Fried Chicken"
button={{ button={{
text: "Order Now", text: "Order Now", href: "/menu"}}
href: "/menu",
}}
animateOnLoad={true}
/> />
</div> </div>
@@ -64,8 +49,7 @@ export default function LandingPage() {
<ContactCenter <ContactCenter
useInvertedBackground={true} useInvertedBackground={true}
background={{ background={{
variant: "downward-rays-static", variant: "downward-rays-static"}}
}}
tag="Get in Touch" tag="Get in Touch"
title="We'd Love to Hear From You" title="We'd Love to Hear From You"
description="Have a question, feedback, or a catering inquiry? Reach out to us through the form below or connect on social media. We're here to help!\n\nWhatsApp: +964 7XX XXX XXXX\nFacebook: FriedChickenIQ\nInstagram: @FriedChickenIQ" description="Have a question, feedback, or a catering inquiry? Reach out to us through the form below or connect on social media. We're here to help!\n\nWhatsApp: +964 7XX XXX XXXX\nFacebook: FriedChickenIQ\nInstagram: @FriedChickenIQ"
@@ -79,62 +63,37 @@ export default function LandingPage() {
<FooterSimple <FooterSimple
columns={[ columns={[
{ {
title: "Menu", title: "Menu", items: [
items: [
{ {
label: "Buckets", label: "Buckets", href: "/menu"},
href: "/menu",
},
{ {
label: "Sandwiches", label: "Sandwiches", href: "/menu"},
href: "/menu",
},
{ {
label: "Broasted Chicken", label: "Broasted Chicken", href: "/menu"},
href: "/menu",
},
{ {
label: "Sides & Drinks", label: "Sides & Drinks", href: "/menu"},
href: "/menu",
},
], ],
}, },
{ {
title: "Company", title: "Company", items: [
items: [
{ {
label: "About Us", label: "About Us", href: "/about"},
href: "/about",
},
{ {
label: "Our Branches", label: "Our Branches", href: "/branches"},
href: "/branches",
},
{ {
label: "Offers", label: "Offers", href: "/offers"},
href: "/offers",
},
{ {
label: "Contact Us", label: "Contact Us", href: "/contact"},
href: "/contact",
},
], ],
}, },
{ {
title: "Follow Us", title: "Follow Us", items: [
items: [
{ {
label: "Facebook", label: "Facebook", href: "https://facebook.com/FriedChickenIQ"},
href: "https://facebook.com/FriedChickenIQ",
},
{ {
label: "Instagram", label: "Instagram", href: "https://instagram.com/FriedChickenIQ"},
href: "https://instagram.com/FriedChickenIQ",
},
{ {
label: "WhatsApp", label: "WhatsApp", href: "https://wa.me/9647xxxxxxxx"},
href: "https://wa.me/9647xxxxxxxx",
},
], ],
}, },
]} ]}