Update src/app/contact/page.tsx

This commit is contained in:
2026-04-15 16:49:03 +00:00
parent 4ac8ef1b5c
commit f0d77c25bd

View File

@@ -6,8 +6,9 @@ import ContactSplit from '@/components/sections/contact/ContactSplit';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import { MapPin } from "lucide-react";
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -25,30 +26,12 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Menu",
id: "/menu",
},
{
name: "About",
id: "/about",
},
{
name: "Gallery",
id: "/gallery",
},
{
name: "Contact",
id: "/contact",
},
{
name: "Order Online",
id: "/order",
},
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "About", id: "/about" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" },
{ name: "Order Online", id: "/order" },
]}
brandName="Lollys Food Joint"
/>
@@ -57,9 +40,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactSplit
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
tag="Get in touch"
title="Contact Us"
description="Send us a message."
@@ -75,34 +56,10 @@ export default function LandingPage() {
title="Locations"
description="Where to find us."
features={[
{
title: "Main Street",
description: "123 Main St.",
buttonIcon: "MapPin",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-realistic-burger_23-2150902326.jpg?_wi=3",
imageAlt: "Delicious realistic burger",
},
{
title: "Park Ave",
description: "456 Park Ave.",
buttonIcon: "MapPin",
imageSrc: "http://img.b2bpic.net/free-photo/hamburger-chips_23-2147695734.jpg?_wi=5",
imageAlt: "Delicious realistic burger",
},
{
title: "City Mall",
description: "789 City Mall.",
buttonIcon: "MapPin",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-eating-burger-street-cafe-close-up_169016-43231.jpg?_wi=5",
imageAlt: "Delicious realistic burger",
},
{
title: "East Side",
description: "321 East St.",
buttonIcon: "MapPin",
imageSrc: "http://img.b2bpic.net/free-photo/attractive-young-woman-hands-holds-two-burgers-blurred-background_169016-43235.jpg?_wi=5",
imageAlt: "Delicious realistic burger",
},
{ title: "Main Street", description: "123 Main St.", buttonIcon: MapPin, imageSrc: "http://img.b2bpic.net/free-photo/delicious-realistic-burger_23-2150902326.jpg", imageAlt: "Delicious realistic burger" },
{ title: "Park Ave", description: "456 Park Ave.", buttonIcon: MapPin, imageSrc: "http://img.b2bpic.net/free-photo/hamburger-chips_23-2147695734.jpg", imageAlt: "Delicious realistic burger" },
{ title: "City Mall", description: "789 City Mall.", buttonIcon: MapPin, imageSrc: "http://img.b2bpic.net/free-photo/young-woman-eating-burger-street-cafe-close-up_169016-43231.jpg", imageAlt: "Delicious realistic burger" },
{ title: "East Side", description: "321 East St.", buttonIcon: MapPin, imageSrc: "http://img.b2bpic.net/free-photo/attractive-young-woman-hands-holds-two-burgers-blurred-background_169016-43235.jpg", imageAlt: "Delicious realistic burger" },
]}
/>
</div>
@@ -110,32 +67,8 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Company",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Menu",
href: "/menu",
},
],
},
{
title: "Order",
items: [
{
label: "Order Online",
href: "/order",
},
{
label: "Contact Us",
href: "/contact",
},
],
},
{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Menu", href: "/menu" }] },
{ title: "Order", items: [{ label: "Order Online", href: "/order" }, { label: "Contact Us", href: "/contact" }] },
]}
bottomLeftText="© 2024 Lolly's Food Joint"
bottomRightText="All rights reserved."