Update src/app/about/page.tsx

This commit is contained in:
2026-05-27 17:47:37 +00:00
parent 534e4702f5
commit df0f34e3cf

View File

@@ -26,37 +26,21 @@ export default function LandingPage() {
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Products",
id: "/products",
},
name: "Products", id: "/products"},
{
name: "Details",
id: "/product-detail",
},
name: "Details", id: "/product-detail"},
{
name: "About Us",
id: "/about",
},
name: "About Us", id: "/about"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
{
name: "FAQ",
id: "/faq",
},
name: "FAQ", id: "/faq"},
{
name: "Track Order",
id: "/track-order",
},
name: "Track Order", id: "/track-order"},
{
name: "Policies",
id: "/legal",
},
name: "Policies", id: "/legal"},
]}
logoSrc="http://img.b2bpic.net/free-photo/computer-mouse-paper-bag-blue-background-top-view_169016-43524.jpg"
logoAlt="NovaCart Logo"
@@ -68,7 +52,6 @@ export default function LandingPage() {
<TextAbout
useInvertedBackground={false}
title="Our Story: Bringing Innovation to Your Fingertips"
text="At NovaCart, we believe in the power of innovation to simplify and enhance everyday life. Founded with a passion for discovering the next big thing, we meticulously curate trending gadgets and smart accessories. Our mission is to connect you with high-quality, viral products that inspire, excite, and improve your daily routine. We're committed to delivering not just products, but a seamless shopping experience built on trust and exceptional service."
/>
</div>
@@ -79,36 +62,14 @@ export default function LandingPage() {
useInvertedBackground={true}
groups={[
{
id: "leadership",
groupTitle: "Leadership Team",
members: [
id: "leadership", groupTitle: "Leadership Team", members: [
{
id: "member-1",
title: "CEO & Founder",
subtitle: "Visionary & Product Scout",
detail: "Leading NovaCart's strategic vision and product discovery, ensuring we always bring you the latest and greatest.",
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-teenage-girl-wearing-trendy-colorful-clothing-rejoicing-positive-news-looking-with-charming-smile-showing-her-perfect-white-teeth-people-lifestyle-youth-happiness_273609-8086.jpg",
imageAlt: "CEO & Founder",
},
id: "member-1", title: "CEO & Founder", subtitle: "Visionary & Product Scout", detail: "Leading NovaCart's strategic vision and product discovery, ensuring we always bring you the latest and greatest.", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-teenage-girl-wearing-trendy-colorful-clothing-rejoicing-positive-news-looking-with-charming-smile-showing-her-perfect-white-teeth-people-lifestyle-youth-happiness_273609-8086.jpg", imageAlt: "CEO & Founder"},
{
id: "member-2",
title: "Head of Operations",
subtitle: "Logistics & Customer Experience",
detail: "Overseeing seamless operations and ensuring every NovaCart customer has an exceptional shopping journey from click to delivery.",
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1626.jpg",
imageAlt: "Head of Operations",
},
id: "member-2", title: "Head of Operations", subtitle: "Logistics & Customer Experience", detail: "Overseeing seamless operations and ensuring every NovaCart customer has an exceptional shopping journey from click to delivery.", imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1626.jpg", imageAlt: "Head of Operations"},
{
id: "member-3",
title: "Marketing Director",
subtitle: "Brand & Growth Strategist",
detail: "Crafting compelling campaigns that share NovaCart's passion for trending tech with the world, driving our community forward.",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-home_23-2149412549.jpg",
imageAlt: "Marketing Director",
},
id: "member-3", title: "Marketing Director", subtitle: "Brand & Growth Strategist", detail: "Crafting compelling campaigns that share NovaCart's passion for trending tech with the world, driving our community forward.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-home_23-2149412549.jpg", imageAlt: "Marketing Director"},
],
imageSrc: "http://img.b2bpic.net/free-photo/computer-mouse-paper-bag-blue-background-top-view_169016-43524.jpg",
imageAlt: "happy customer avatar woman",
},
]}
title="Meet the Minds Behind NovaCart"
@@ -120,79 +81,47 @@ export default function LandingPage() {
<FooterBase
columns={[
{
title: "Shop",
items: [
title: "Shop", items: [
{
label: "All Products",
href: "/products",
},
label: "All Products", href: "/products"},
{
label: "Featured",
href: "/products",
},
label: "Featured", href: "/products"},
{
label: "Best Sellers",
href: "/products",
},
label: "Best Sellers", href: "/products"},
{
label: "Deals",
href: "/products",
},
label: "Deals", href: "/products"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
{
label: "FAQ",
href: "/faq",
},
label: "FAQ", href: "/faq"},
{
label: "Our Team",
href: "/about#our-team",
},
label: "Our Team", href: "/about#our-team"},
],
},
{
title: "Support",
items: [
title: "Support", items: [
{
label: "Track Order",
href: "/track-order",
},
label: "Track Order", href: "/track-order"},
{
label: "Shipping Info",
href: "/faq",
},
label: "Shipping Info", href: "/faq"},
{
label: "Returns Policy",
href: "/legal",
},
label: "Returns Policy", href: "/legal"},
{
label: "Help Center",
href: "/contact",
},
label: "Help Center", href: "/contact"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "/legal#privacy-policy",
},
label: "Privacy Policy", href: "/legal#privacy-policy"},
{
label: "Terms & Conditions",
href: "/legal#terms-conditions",
},
label: "Terms & Conditions", href: "/legal#terms-conditions"},
],
},
]}