Update src/app/products/page.tsx

This commit is contained in:
2026-03-03 17:11:29 +00:00
parent a9fa35cfee
commit 598f193396

View File

@@ -42,7 +42,8 @@ export default function ProductsPage() {
{ name: "Support", id: "#faq" },
]}
button={{
text: "Get Started", href: "https://app.stockflow.example.com/signup"}}
text: "Get Started", href: "https://app.stockflow.example.com/signup"
}}
animateOnLoad={true}
/>
</div>
@@ -54,7 +55,7 @@ export default function ProductsPage() {
tag="Product Management"
tagIcon={Package}
tagAnimation="slide-up"
background={{ variant: "grid" }}
background={{ variant: "plain" }}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARURmBxrejr64VtuPGs2xIm36h/an-organized-warehouse-or-retail-environ-1772555116849-9d0589e3.png"
imageAlt="Organized warehouse with inventory management"
mediaAnimation="opacity"
@@ -64,22 +65,26 @@ export default function ProductsPage() {
name: "Amanda Foster", handle: "Inventory Manager, StockMart", testimonial:
"The barcode scanning feature has eliminated manual entry errors almost completely. Our inventory accuracy is now 99.8%!", rating: 5,
imageSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARURmBxrejr64VtuPGs2xIm36h/professional-headshot-of-a-business-mana-1772555115308-082d88d1.png", imageAlt: "Amanda Foster"},
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARURmBxrejr64VtuPGs2xIm36h/professional-headshot-of-a-business-mana-1772555115308-082d88d1.png", imageAlt: "Amanda Foster"
},
{
name: "Thomas Murphy", handle: "Warehouse Manager, SwiftLogistics", testimonial:
"Managing multiple warehouses is now incredibly simple. Stock levels sync automatically across all locations.", rating: 5,
imageSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARURmBxrejr64VtuPGs2xIm36h/professional-headshot-of-a-retail-manage-1772555115414-0f7a2ba7.png", imageAlt: "Thomas Murphy"},
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARURmBxrejr64VtuPGs2xIm36h/professional-headshot-of-a-retail-manage-1772555115414-0f7a2ba7.png", imageAlt: "Thomas Murphy"
},
{
name: "Patricia Rodriguez", handle: "Operations Lead, GlobalGoods", testimonial:
"The bulk import feature saved us weeks of manual data entry when we migrated from our old system.", rating: 5,
imageSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARURmBxrejr64VtuPGs2xIm36h/professional-headshot-of-an-e-commerce-e-1772555115180-edb2fb06.png", imageAlt: "Patricia Rodriguez"},
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARURmBxrejr64VtuPGs2xIm36h/professional-headshot-of-an-e-commerce-e-1772555115180-edb2fb06.png", imageAlt: "Patricia Rodriguez"
},
]}
testimonialRotationInterval={5000}
buttons={[
{
text: "Start Managing Products", href: "https://app.stockflow.example.com/products"},
text: "Start Managing Products", href: "https://app.stockflow.example.com/products"
},
{ text: "View Pricing", href: "#pricing" },
]}
buttonAnimation="slide-up"
@@ -100,17 +105,20 @@ export default function ProductsPage() {
features={[
{
id: "sku-management", label: "SKU System", title: "Comprehensive Product Organization", items: [
"Unlimited product SKUs and variants", "Custom product attributes and categories", "Automated SKU generation and management", "Product relationships and bundling"],
"Unlimited product SKUs and variants", "Custom product attributes and categories", "Automated SKU generation and management", "Product relationships and bundling"
],
buttons: [{ text: "Organize Catalog", href: "#" }],
},
{
id: "barcode-tracking", label: "Barcode", title: "Automated Tracking & Scanning", items: [
"Built-in barcode scanner integration", "Barcode generation for all products", "Batch barcode printing", "QR code support for quick access"],
"Built-in barcode scanner integration", "Barcode generation for all products", "Batch barcode printing", "QR code support for quick access"
],
buttons: [{ text: "Enable Scanning", href: "#" }],
},
{
id: "multi-warehouse", label: "Warehouses", title: "Multi-Location Stock Sync", items: [
"Real-time inventory across all warehouses", "Location-specific stock tracking", "Automated transfer management", "Consolidated stock visibility"],
"Real-time inventory across all warehouses", "Location-specific stock tracking", "Automated transfer management", "Consolidated stock visibility"
],
buttons: [{ text: "Setup Locations", href: "#" }],
},
]}
@@ -129,16 +137,20 @@ export default function ProductsPage() {
metrics={[
{
id: "1", icon: Package,
title: "Products Managed", value: "100M+"},
title: "Products Managed", value: "100M+"
},
{
id: "2", icon: Barcode,
title: "Scans Daily", value: "10M+"},
title: "Scans Daily", value: "10M+"
},
{
id: "3", icon: Lock,
title: "Accuracy Rate", value: "99.9%"},
title: "Accuracy Rate", value: "99.9%"
},
{
id: "4", icon: TrendingUp,
title: "Error Reduction", value: "95%"},
title: "Error Reduction", value: "95%"
},
]}
/>
</div>
@@ -171,9 +183,11 @@ export default function ProductsPage() {
{ label: "Help Center", href: "/help" },
{ label: "Documentation", href: "/docs" },
{
label: "Contact", href: "mailto:support@stockflow.example.com"},
label: "Contact", href: "mailto:support@stockflow.example.com"
},
{
label: "Status Page", href: "https://status.stockflow.example.com"},
label: "Status Page", href: "https://status.stockflow.example.com"
},
],
},
]}