Update src/app/about/page.tsx

This commit is contained in:
2026-03-26 02:45:22 +00:00
parent 158b707b9b
commit 06b9155e19

View File

@@ -8,6 +8,46 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin
import SplitAbout from '@/components/sections/about/SplitAbout';
import { Lightbulb, ShieldCheck, Leaf } from "lucide-react";
const commonNavItems = [
{ name: "Home", href: "/" },
{ name: "Products", href: "/products" },
{ name: "Features", href: "/#features" },
{ name: "About Us", href: "/about" },
{ name: "FAQs", href: "/faqs" },
{ name: "Contact", href: "/contact" }
];
const commonNavbarButton = {
text: "Get Your Case", href: "/products"
};
const commonFooterColumns = [
{
title: "Shop", items: [
{ label: "iPhone Cases", href: "/products#iphone" },
{ label: "Samsung Cases", href: "/products#samsung" },
{ label: "Pixel Cases", href: "/products#pixel" },
{ label: "Accessories", href: "/products#accessories" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Features", href: "/#features" },
{ label: "Testimonials", href: "/#testimonials" },
{ label: "FAQs", href: "/faqs" }
]
},
{
title: "Support", items: [
{ label: "Contact Us", href: "/contact" },
{ label: "Shipping & Returns", href: "/shipping" },
{ label: "Warranty", href: "/warranty" },
{ label: "Privacy Policy", href: "/privacy" }
]
}
];
export default function LandingPage() {
return (
<ThemeProvider
@@ -25,30 +65,9 @@ export default function LandingPage() {
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home", id: "home"
},
{
name: "Shop", id: "shop"
},
{
name: "Features", id: "features"
},
{
name: "About Us", id: "about"
},
{
name: "FAQs", id: "faqs"
},
{
name: "Contact", id: "contact"
}
]}
navItems={commonNavItems}
brandName="CaseBuddy"
button={{
text: "Get Your Case", href: "/shop"
}}
button={commonNavbarButton}
/>
</div>
@@ -100,50 +119,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Shop", items: [
{
label: "iPhone Cases", href: "/shop/iphone"
},
{
label: "Samsung Cases", href: "/shop/samsung"
},
{
label: "Pixel Cases", href: "/shop/pixel"
},
{
label: "Accessories", href: "/shop/accessories"
}
]
},
{
title: "Company", items: [
{
label: "About Us", href: "/about"
},
{
label: "Blog", href: "/blog"
},
{
label: "Careers", href: "/careers"
}
]
},
{
title: "Support", items: [
{
label: "FAQs", href: "/faqs"
},
{
label: "Contact Us", href: "/contact"
},
{
label: "Shipping & Returns", href: "/shipping"
}
]
}
]}
columns={commonFooterColumns}
copyrightText="© 2024 CaseBuddy. All rights reserved."
/>
</div>