Update src/app/about/page.tsx

This commit is contained in:
2026-03-05 10:03:46 +00:00
parent 46a1626ba4
commit 80c68ef326

View File

@@ -33,9 +33,7 @@ export default function AboutPage() {
brandName="Nexora"
navItems={navItems}
button={{
text: "Shop Now",
href: "/shop",
}}
text: "Shop Now", href: "/shop"}}
/>
</div>
@@ -50,7 +48,8 @@ export default function AboutPage() {
]}
useInvertedBackground={false}
mediaAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/female-couch-holding-her-phone-mug-sitting-front-table-with-gadgets_181624-56360.jpg?_wi=3"
metricsAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/female-couch-holding-her-phone-mug-sitting-front-table-with-gadgets_181624-56360.jpg"
imageAlt="Nexora team and products"
/>
</div>
@@ -66,7 +65,8 @@ export default function AboutPage() {
]}
useInvertedBackground={true}
mediaAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/modern-living-room-interior-with-large-tv-screen-displaying-home-automation-system_9975-33164.jpg?_wi=4"
metricsAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/modern-living-room-interior-with-large-tv-screen-displaying-home-automation-system_9975-33164.jpg"
imageAlt="Quality smart home systems"
/>
</div>
@@ -80,53 +80,17 @@ export default function AboutPage() {
animationType="slide-up"
testimonials={[
{
id: "1",
name: "Sarah Mitchell",
handle: "@sarahmitchell",
testimonial: "Nexora transformed my home! The products are premium quality and their support team is incredibly responsive. Best investment I've made.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=7",
imageAlt: "Sarah Mitchell",
},
id: "1", name: "Sarah Mitchell", handle: "@sarahmitchell", testimonial: "Nexora transformed my home! The products are premium quality and their support team is incredibly responsive. Best investment I've made.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Sarah Mitchell"},
{
id: "2",
name: "James Chen",
handle: "@jameschen_tech",
testimonial: "Fast shipping, great products, and easy setup. The 30-day guarantee gave me confidence. Highly recommend Nexora to anyone!",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=8",
imageAlt: "James Chen",
},
id: "2", name: "James Chen", handle: "@jameschen_tech", testimonial: "Fast shipping, great products, and easy setup. The 30-day guarantee gave me confidence. Highly recommend Nexora to anyone!", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "James Chen"},
{
id: "3",
name: "Emma Rodriguez",
handle: "@emmasmarthome",
testimonial: "The compatibility with my existing smart home setup was seamless. Nexora really understands what customers need.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=9",
imageAlt: "Emma Rodriguez",
},
id: "3", name: "Emma Rodriguez", handle: "@emmasmarthome", testimonial: "The compatibility with my existing smart home setup was seamless. Nexora really understands what customers need.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Emma Rodriguez"},
{
id: "4",
name: "Michael Wong",
handle: "@michaeltech",
testimonial: "Outstanding customer service! They helped me integrate everything perfectly. This is premium service at its finest.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=10",
imageAlt: "Michael Wong",
},
id: "4", name: "Michael Wong", handle: "@michaeltech", testimonial: "Outstanding customer service! They helped me integrate everything perfectly. This is premium service at its finest.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Michael Wong"},
{
id: "5",
name: "Lisa Anderson",
handle: "@lisahome",
testimonial: "Five stars all the way. Quality products, fast delivery, and genuine support. Nexora is my go-to for smart home gadgets.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=11",
imageAlt: "Lisa Anderson",
},
id: "5", name: "Lisa Anderson", handle: "@lisahome", testimonial: "Five stars all the way. Quality products, fast delivery, and genuine support. Nexora is my go-to for smart home gadgets.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Lisa Anderson"},
{
id: "6",
name: "David Kumar",
handle: "@davidktech",
testimonial: "The best shopping experience I've had online. Premium products, competitive prices, and exceptional service.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=12",
imageAlt: "David Kumar",
},
id: "6", name: "David Kumar", handle: "@davidktech", testimonial: "The best shopping experience I've had online. Premium products, competitive prices, and exceptional service.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "David Kumar"},
]}
speed={40}
/>
@@ -136,8 +100,7 @@ export default function AboutPage() {
<FooterBaseReveal
columns={[
{
title: "Shop",
items: [
title: "Shop", items: [
{ label: "All Products", href: "/shop" },
{ label: "Featured", href: "/shop?filter=featured" },
{ label: "Trending", href: "/shop?filter=trending" },
@@ -145,8 +108,7 @@ export default function AboutPage() {
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Contact", href: "/contact" },
{ label: "FAQ", href: "/faq" },
@@ -154,8 +116,7 @@ export default function AboutPage() {
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "/privacy-policy" },
{ label: "Terms of Service", href: "/terms-of-service" },
{ label: "Shipping Policy", href: "/shipping-policy" },