Update src/app/contact/page.tsx

This commit is contained in:
2026-04-03 14:06:18 +00:00
parent 2292134378
commit abe2caa9b8

View File

@@ -7,7 +7,7 @@ import FooterSimple from '@/components/sections/footer/FooterSimple';
import LegalSection from '@/components/legal/LegalSection';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
@@ -22,125 +22,75 @@ export default function LandingPage() {
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Menu",
id: "/menu",
},
{
name: "Gallery",
id: "/gallery",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Green Lantern Lunch"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Menu", id: "/menu" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" },
]}
brandName="Green Lantern Lunch"
/>
</div>
<div id="contact-info" data-section="contact-info">
<ContactText
useInvertedBackground={false}
background={{
variant: "plain",
}}
text="Address: 509 Broadway St, Toledo, OH | Phone: (567) 315-8826 | Open daily until 2 PM"
buttons={[
{
text: "Call Now",
href: "tel:5673158826",
},
{
text: "Get Directions",
href: "https://maps.google.com",
},
]}
/>
</div>
<div id="contact-info" data-section="contact-info">
<ContactText
useInvertedBackground={false}
background={{ variant: "plain" }}
text="Address: 509 Broadway St, Toledo, OH | Phone: (567) 315-8826 | Open daily until 2 PM"
buttons={[
{ text: "Call Now", href: "tel:5673158826" },
{ text: "Get Directions", href: "https://maps.google.com" },
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={false}
background={{
variant: "plain",
}}
text="Visit us at 509 Broadway St, Toledo, OH. We are open daily until 2 PM."
buttons={[
{
text: "Call",
href: "tel:5673158826",
},
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={false}
background={{ variant: "plain" }}
text="Visit us at 509 Broadway St, Toledo, OH. We are open daily until 2 PM."
buttons={[
{ text: "Call", href: "tel:5673158826" },
]}
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="section"
title="Privacy Policy"
sections={[
{
heading: "Data Usage",
content: {
type: "paragraph",
text: "We respect your privacy.",
},
},
]}
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="section"
title="Privacy Policy"
sections={[
{
heading: "Data Usage", content: "We respect your privacy."},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Quick Links",
items: [
{
label: "Menu",
href: "/menu",
},
{
label: "About Us",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Hours",
items: [
{
label: "Open Daily",
href: "#",
},
{
label: "Closes at 2 PM",
href: "#",
},
],
},
]}
bottomLeftText="© 1927 Green Lantern Lunch"
bottomRightText="509 Broadway St, Toledo, OH"
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Quick Links", items: [
{ label: "Menu", href: "/menu" },
{ label: "About Us", href: "/about" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Hours", items: [
{ label: "Open Daily", href: "#" },
{ label: "Closes at 2 PM", href: "#" },
],
},
]}
bottomLeftText="© 1927 Green Lantern Lunch"
bottomRightText="509 Broadway St, Toledo, OH"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}