Update src/app/about/page.tsx

This commit is contained in:
2026-03-21 19:47:06 +00:00
parent 070ac449f5
commit bcaa8010e7

View File

@@ -34,9 +34,7 @@ export default function AboutPage() {
brandName="ShopHub"
navItems={navItems}
button={{
text: "View Cart",
href: "/cart",
}}
text: "View Cart", href: "/cart"}}
/>
</div>
@@ -44,19 +42,13 @@ export default function AboutPage() {
<InlineImageSplitTextAbout
heading={[
{
type: "text",
content: "Why Choose ShopHub?",
},
type: "text", content: "Why Choose ShopHub?"},
{
type: "text",
content: "\n\nWe bring together premium products with exceptional shopping experience. Our curated collections are sourced from trusted brands and delivered with care.\n\nWith WhatsApp integration, ordering is simple and direct—no complicated checkout process, just straightforward communication and quick service.",
},
type: "text", content: "\n\nWe bring together premium products with exceptional shopping experience. Our curated collections are sourced from trusted brands and delivered with care.\n\nWith WhatsApp integration, ordering is simple and direct—no complicated checkout process, just straightforward communication and quick service."},
]}
buttons={[
{
text: "Explore Collection",
href: "/products",
},
text: "Explore Collection", href: "/products"},
]}
buttonAnimation="slide-up"
useInvertedBackground={false}
@@ -69,41 +61,17 @@ export default function AboutPage() {
description="Everything you need for a seamless shopping experience, from discovery to delivery."
features={[
{
id: "feat-001",
title: "Curated Selection",
author: "Premium Brands",
description: "Handpicked products from trusted brands and sellers worldwide.",
tags: ["Quality", "Trusted"],
imageSrc: "http://img.b2bpic.net/free-photo/store-assistant-recommending-shirt-sale-senior-woman_482257-93018.jpg?_wi=4",
imageAlt: "curated product selection shopping store",
},
id: "feat-001", title: "Curated Selection", author: "Premium Brands", description: "Handpicked products from trusted brands and sellers worldwide.", tags: ["Quality", "Trusted"],
imageSrc: "http://img.b2bpic.net/free-photo/store-assistant-recommending-shirt-sale-senior-woman_482257-93018.jpg?_wi=4", imageAlt: "curated product selection shopping store"},
{
id: "feat-002",
title: "WhatsApp Ordering",
author: "Direct Communication",
description: "Order directly via WhatsApp with instant confirmation and support.",
tags: ["Easy", "Direct"],
imageSrc: "http://img.b2bpic.net/free-vector/dating-application-concept_23-2148277325.jpg?_wi=2",
imageAlt: "WhatsApp messaging mobile chat interface",
},
id: "feat-002", title: "WhatsApp Ordering", author: "Direct Communication", description: "Order directly via WhatsApp with instant confirmation and support.", tags: ["Easy", "Direct"],
imageSrc: "http://img.b2bpic.net/free-vector/dating-application-concept_23-2148277325.jpg?_wi=2", imageAlt: "WhatsApp messaging mobile chat interface"},
{
id: "feat-003",
title: "Fast Checkout",
author: "Simple Process",
description: "Skip complicated forms. Add to cart and message—that's it.",
tags: ["Quick", "Simple"],
imageSrc: "http://img.b2bpic.net/free-photo/man-holding-cup-medium-shot_23-2149013899.jpg?_wi=3",
imageAlt: "fast checkout quick payment process",
},
id: "feat-003", title: "Fast Checkout", author: "Simple Process", description: "Skip complicated forms. Add to cart and message—that's it.", tags: ["Quick", "Simple"],
imageSrc: "http://img.b2bpic.net/free-photo/man-holding-cup-medium-shot_23-2149013899.jpg?_wi=3", imageAlt: "fast checkout quick payment process"},
{
id: "feat-004",
title: "Secure Transactions",
author: "Your Safety",
description: "Your data is protected with industry-leading security standards.",
tags: ["Safe", "Secure"],
imageSrc: "http://img.b2bpic.net/free-photo/man-holding-credit-card-hand-entering-security-code-using-laptop-keyboard_1423-158.jpg?_wi=3",
imageAlt: "security lock protection digital safety",
},
id: "feat-004", title: "Secure Transactions", author: "Your Safety", description: "Your data is protected with industry-leading security standards.", tags: ["Safe", "Secure"],
imageSrc: "http://img.b2bpic.net/free-photo/man-holding-credit-card-hand-entering-security-code-using-laptop-keyboard_1423-158.jpg?_wi=3", imageAlt: "security lock protection digital safety"},
]}
animationType="slide-up"
textboxLayout="default"
@@ -118,27 +86,19 @@ export default function AboutPage() {
socialLinks={[
{
icon: Facebook,
href: "https://facebook.com",
ariaLabel: "Facebook",
},
href: "https://facebook.com", ariaLabel: "Facebook"},
{
icon: Instagram,
href: "https://instagram.com",
ariaLabel: "Instagram",
},
href: "https://instagram.com", ariaLabel: "Instagram"},
{
icon: Twitter,
href: "https://twitter.com",
ariaLabel: "Twitter",
},
href: "https://twitter.com", ariaLabel: "Twitter"},
{
icon: Linkedin,
href: "https://linkedin.com",
ariaLabel: "LinkedIn",
},
href: "https://linkedin.com", ariaLabel: "LinkedIn"},
]}
/>
</div>
</ThemeProvider>
);
}
}