2 Commits

Author SHA1 Message Date
be6bd005f0 Update src/app/page.tsx 2026-06-04 01:41:24 +00:00
f51ea7f479 Merge version_1 into main
Merge version_1 into main
2026-06-04 01:36:54 +00:00

View File

@@ -260,29 +260,19 @@ export default function LandingPage() {
<FooterSimple <FooterSimple
columns={[ columns={[
{ {
title: "Fuel & Food", items: [ title: "Our Offerings", items: [
{ {
label: "Our Fuel", href: "#services"}, label: "Fuel & Food", href: "#services"},
{ {
label: "Food & Snacks", href: "#products"}, label: "Products & Snacks", href: "#products"},
{ {
label: "Coffee Bar", href: "#services"}, label: "Coffee Bar", href: "#services"},
], ],
}, },
{ {
title: "Services", items: [ title: "About Us", items: [
{ {
label: "Car Wash", href: "#services"}, label: "Our Story", href: "#about"},
{
label: "ATM", href: "#services"},
{
label: "Loyalty Program", href: "#"},
],
},
{
title: "Company", items: [
{
label: "About Us", href: "#about"},
{ {
label: "Testimonials", href: "#testimonials"}, label: "Testimonials", href: "#testimonials"},
{ {
@@ -290,13 +280,23 @@ export default function LandingPage() {
], ],
}, },
{ {
title: "Support", items: [ title: "Visit Us", items: [
{
label: "Store Hours", href: "#"},
{
label: "Our Location", href: "#contact"},
],
},
{
title: "Legal & Support", items: [
{ {
label: "FAQ", href: "#faq"}, label: "FAQ", href: "#faq"},
{ {
label: "Contact Us", href: "#contact"}, label: "Contact Us", href: "#contact"},
{ {
label: "Privacy Policy", href: "#"}, label: "Privacy Policy", href: "#"},
{
label: "Terms of Service", href: "#"},
], ],
}, },
]} ]}
@@ -307,4 +307,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }