2 Commits

Author SHA1 Message Date
b69aa686ed Update src/app/page.tsx 2026-05-14 04:31:34 +00:00
0d55398521 Merge version_1 into main
Merge version_1 into main
2026-05-14 04:23:42 +00:00

View File

@@ -177,15 +177,26 @@ export default function LandingPage() {
<FooterSimple <FooterSimple
columns={[ columns={[
{ {
title: "Company", items: [ title: "About", items: [
{ label: "About Us", href: "#about" }, { label: "Our Philosophy" },
{ label: "Services", href: "#features" }, { label: "Our Process" },
], ],
}, },
{ {
title: "Legal", items: [ title: "Hours", items: [
{ label: "Privacy Policy", href: "#" }, { label: "Mon-Fri: 8am - 6pm" },
{ label: "Terms of Service", href: "#" }, { label: "Sat: 9am - 2pm" },
],
},
{
title: "Location", items: [
{ label: "123 Spartan Way, City" },
],
},
{
title: "Social", items: [
{ label: "Instagram" },
{ label: "Facebook" },
], ],
}, },
]} ]}
@@ -196,4 +207,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }