Update src/app/contact/page.tsx

This commit is contained in:
2026-04-12 11:07:32 +00:00
parent c54e08598c
commit 3c108f87a9

View File

@@ -6,8 +6,9 @@ import ContactCenter from '@/components/sections/contact/ContactCenter';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import { MapPin, Car, Clock, Truck } from "lucide-react";
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
@@ -24,24 +25,7 @@ export default function LandingPage() {
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Menu",
id: "/menu",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
]}
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
brandName="Shahs Halal Food"
/>
</div>
@@ -49,9 +33,7 @@ export default function LandingPage() {
<div id="contact-body" data-section="contact-body">
<ContactCenter
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
title="Get in Touch"
description="Visit us in Watford or order online for delivery."
tag="Contact"
@@ -65,34 +47,10 @@ export default function LandingPage() {
title="Visit Us"
description="Find our flagship store in Watford."
features={[
{
title: "Central Location",
description: "Easy access.",
buttonIcon: "MapPin",
imageSrc: "http://img.b2bpic.net/free-photo/assortment-with-delicious-high-protein-vegan-meal_23-2149039399.jpg?_wi=2",
imageAlt: "Assortment with delicious high protein vegan meal",
},
{
title: "Parking Available",
description: "Hassle-free visits.",
buttonIcon: "Car",
imageSrc: "http://img.b2bpic.net/free-photo/shaurma-roasted-potatoes-dip-dressing_114579-1139.jpg?_wi=4",
imageAlt: "Assortment with delicious high protein vegan meal",
},
{
title: "Opening Hours",
description: "Daily till late.",
buttonIcon: "Clock",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-vegetable-salad-consists-tomatoes-olives-peppers-dark-background-health-diet-meal-snack-salad_140725-96827.jpg?_wi=4",
imageAlt: "Assortment with delicious high protein vegan meal",
},
{
title: "Delivery",
description: "To your doorstep.",
buttonIcon: "Truck",
imageSrc: "http://img.b2bpic.net/free-photo/sadj-with-various-sliced-vegetables-meat_140725-3816.jpg?_wi=4",
imageAlt: "Assortment with delicious high protein vegan meal",
},
{ title: "Central Location", description: "Easy access.", buttonIcon: MapPin, imageSrc: "http://img.b2bpic.net/free-photo/assortment-with-delicious-high-protein-vegan-meal_23-2149039399.jpg", imageAlt: "Assortment with delicious high protein vegan meal" },
{ title: "Parking Available", description: "Hassle-free visits.", buttonIcon: Car, imageSrc: "http://img.b2bpic.net/free-photo/shaurma-roasted-potatoes-dip-dressing_114579-1139.jpg", imageAlt: "Assortment with delicious high protein vegan meal" },
{ title: "Opening Hours", description: "Daily till late.", buttonIcon: Clock, imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-vegetable-salad-consists-tomatoes-olives-peppers-dark-background-health-diet-meal-snack-salad_140725-96827.jpg", imageAlt: "Assortment with delicious high protein vegan meal" },
{ title: "Delivery", description: "To your doorstep.", buttonIcon: Truck, imageSrc: "http://img.b2bpic.net/free-photo/sadj-with-various-sliced-vegetables-meat_140725-3816.jpg", imageAlt: "Assortment with delicious high protein vegan meal" },
]}
/>
</div>
@@ -101,36 +59,8 @@ export default function LandingPage() {
<FooterBaseReveal
logoText="Shahs Halal Food"
columns={[
{
title: "Quick Links",
items: [
{
label: "Menu",
href: "/menu",
},
{
label: "About Us",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
]}
/>
</div>