Update src/app/about/page.tsx

This commit is contained in:
2026-03-25 02:29:43 +00:00
parent 600fd4b349
commit 853eec2a43

View File

@@ -7,7 +7,7 @@ import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaA
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import SplitAbout from '@/components/sections/about/SplitAbout';
import TeamCardFive from '@/components/sections/team/TeamCardFive';
import { MapPin, ShieldCheck } from "lucide-react";
import { MapPin, ShieldCheck, UserCircle } from "lucide-react";
export default function LandingPage() {
return (
@@ -28,41 +28,21 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "home",
href: "/",
},
name: "Home", id: "/"},
{
name: "Features",
id: "features",
href: "/#features",
},
name: "Features", id: "/#features"},
{
name: "Listings",
id: "listings",
href: "/#listings",
},
name: "Listings", id: "/#listings"},
{
name: "About Us",
id: "about-us",
href: "/about",
},
name: "About Us", id: "/about"},
{
name: "FAQ",
id: "faq",
href: "/faq",
},
name: "FAQ", id: "/faq"},
{
name: "Contact",
id: "contact",
href: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="Marketplace Hub"
button={{
text: "Post Ad",
href: "#post-ad",
}}
text: "Post Ad", href: "#post-ad"}}
/>
</div>
@@ -75,22 +55,16 @@ export default function LandingPage() {
description="Marketplace Hub was founded on the belief that local communities thrive when people can easily connect, share, and exchange goods and services. We started with a simple idea: create a platform where buying and selling locally is safe, simple, and truly rewarding."
bulletPoints={[
{
title: "Local Focus",
description: "We prioritize local listings, helping you find unique items and reliable buyers/sellers right in your neighborhood.",
icon: MapPin,
title: "Local Focus", description: "We prioritize local listings, helping you find unique items and reliable buyers/sellers right in your neighborhood.", icon: MapPin,
},
{
title: "User-Centric Design",
description: "Our platform is built with you in mind, ensuring an intuitive experience from browsing to selling.",
icon: UserCircle,
title: "User-Centric Design", description: "Our platform is built with you in mind, ensuring an intuitive experience from browsing to selling.", icon: UserCircle,
},
{
title: "Trust & Safety",
description: "Robust features and dedicated support ensure every transaction is secure and transparent.",
icon: ShieldCheck,
title: "Trust & Safety", description: "Robust features and dedicated support ensure every transaction is secure and transparent.", icon: ShieldCheck,
},
]}
imageSrc="http://img.b2bpic.net/free-photo/volunteers-clothing-donations-medium-shot_23-2149142802.jpg?_wi=2"
imageSrc="http://img.b2bpic.net/free-photo/volunteers-clothing-donations-medium-shot_23-2149142802.jpg"
imageAlt="community focused buying and selling"
mediaAnimation="blur-reveal"
/>
@@ -103,19 +77,13 @@ export default function LandingPage() {
description="Since our launch, we've fostered a vibrant community and facilitated countless transactions. Our growth is a testament to the trust our users place in us."
metrics={[
{
value: "500K+",
title: "Active Users",
},
value: "500K+", title: "Active Users"},
{
value: "1M+",
title: "Items Listed",
},
value: "1M+", title: "Items Listed"},
{
value: "4.8/5",
title: "Average Rating",
},
value: "4.8/5", title: "Average Rating"},
]}
imageSrc="http://img.b2bpic.net/free-photo/couple-ordering-food-restaurant_23-2149269229.jpg?_wi=2"
imageSrc="http://img.b2bpic.net/free-photo/couple-ordering-food-restaurant_23-2149269229.jpg"
imageAlt="close up of smartphone with marketplace app"
mediaAnimation="slide-up"
metricsAnimation="blur-reveal"
@@ -129,6 +97,11 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Meet Our Dedicated Team"
description="Behind Marketplace Hub is a passionate group committed to making your local buying and selling experience exceptional. We're innovators, community builders, and problem-solvers."
team={[
{ name: "John Doe", role: "CEO", imageSrc: "https://generated.vusercontent.net/placeholder.svg" },
{ name: "Jane Smith", role: "CTO", imageSrc: "https://generated.vusercontent.net/placeholder.svg" },
{ name: "Peter Jones", role: "Lead Developer", imageSrc: "https://generated.vusercontent.net/placeholder.svg" }
]}
/>
</div>
@@ -136,50 +109,31 @@ export default function LandingPage() {
<FooterBase
columns={[
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Careers",
href: "#",
},
label: "Careers", href: "#"},
{
label: "Press",
href: "#",
},
label: "Press", href: "#"},
],
},
{
title: "Support",
items: [
title: "Support", items: [
{
label: "FAQ",
href: "/faq",
},
label: "FAQ", href: "/faq"},
{
label: "Contact Us",
href: "/contact",
},
label: "Contact Us", href: "/contact"},
{
label: "Help Center",
href: "#",
},
label: "Help Center", href: "#"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
],
},
]}