Merge version_1 into main #2
365
src/app/page.tsx
365
src/app/page.tsx
@@ -4,58 +4,25 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery";
|
||||
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
|
||||
import ProductCardFour from "@/components/sections/product/ProductCardFour";
|
||||
import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
|
||||
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
|
||||
import TeamCardOne from "@/components/sections/team/TeamCardOne";
|
||||
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
||||
import PricingCardOne from "@/components/sections/pricing/PricingCardOne";
|
||||
import FaqBase from "@/components/sections/faq/FaqBase";
|
||||
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
||||
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||
import Link from "next/link";
|
||||
import { Sparkles } from "lucide-react";
|
||||
|
||||
export default function HomePage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Features", id: "features" },
|
||||
{ name: "Modules", id: "modules" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Product",
|
||||
items: [
|
||||
{ label: "Features", href: "#features" },
|
||||
{ label: "Modules", href: "#modules" },
|
||||
{ label: "Pricing", href: "/pricing" },
|
||||
{ label: "Security", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{ label: "Documentation", href: "#" },
|
||||
{ label: "Help Center", href: "#faq" },
|
||||
{ label: "Contact", href: "#contact" },
|
||||
{ label: "Status Page", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Team", href: "#team" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Careers", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Cookie Policy", href: "#" },
|
||||
{ label: "Compliance", href: "#" },
|
||||
],
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Features", id: "#features" },
|
||||
{ name: "Modules", id: "#modules" },
|
||||
{ name: "Pricing", id: "#pricing" },
|
||||
{ name: "Contact", id: "#contact" },
|
||||
];
|
||||
|
||||
return (
|
||||
@@ -80,9 +47,7 @@ export default function HomePage() {
|
||||
id: item.id,
|
||||
}))}
|
||||
button={{
|
||||
text: "Get Started",
|
||||
href: "#contact",
|
||||
}}
|
||||
text: "Get Started", href: "#contact"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -94,40 +59,25 @@ export default function HomePage() {
|
||||
tag="Enterprise Solution"
|
||||
tagAnimation="slide-up"
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
variant: "sparkles-gradient"}}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/dashboard-user-panel-template_52683-31485.jpg?_wi=1",
|
||||
imageAlt: "Professional admin dashboard",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/dashboard-user-panel-template_52683-31485.jpg", imageAlt: "Professional admin dashboard"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/creative-delivery-concept_23-2147713639.jpg?_wi=1",
|
||||
imageAlt: "Products management interface",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/creative-delivery-concept_23-2147713639.jpg", imageAlt: "Products management interface"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/dashboard-user-panel-template_23-2148367405.jpg?_wi=1",
|
||||
imageAlt: "Sales processing system",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/dashboard-user-panel-template_23-2148367405.jpg", imageAlt: "Sales processing system"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-tablet-papers-with-data-charts-desk-used-by-workmates-business-development-corporate-colleagues-working-project-presentation-management-marketing-strategy_482257-32053.jpg?_wi=1",
|
||||
imageAlt: "Analytics and reporting",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-tablet-papers-with-data-charts-desk-used-by-workmates-business-development-corporate-colleagues-working-project-presentation-management-marketing-strategy_482257-32053.jpg", imageAlt: "Analytics and reporting"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/industry-4-0-engineer-programs-automated-assembly-line-robot-arm-using-cad-software-tablet_482257-135813.jpg?_wi=1",
|
||||
imageAlt: "Real-time stock tracking",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/industry-4-0-engineer-programs-automated-assembly-line-robot-arm-using-cad-software-tablet_482257-135813.jpg", imageAlt: "Real-time stock tracking"},
|
||||
]}
|
||||
mediaAnimation="blur-reveal"
|
||||
buttons={[
|
||||
{
|
||||
text: "View Demo",
|
||||
href: "#features",
|
||||
},
|
||||
text: "View Demo", href: "#features"},
|
||||
{
|
||||
text: "Get Started",
|
||||
href: "/pricing",
|
||||
},
|
||||
text: "Get Started", href: "#pricing"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
@@ -142,41 +92,17 @@ export default function HomePage() {
|
||||
tagAnimation="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "Real-Time Inventory Tracking",
|
||||
description: "Monitor stock levels across all products in real-time. Automatic updates when sales are processed prevent overselling and stockouts.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/industry-4-0-engineer-programs-automated-assembly-line-robot-arm-using-cad-software-tablet_482257-135813.jpg?_wi=2",
|
||||
imageAlt: "Stock tracking interface",
|
||||
},
|
||||
title: "Real-Time Inventory Tracking", description: "Monitor stock levels across all products in real-time. Automatic updates when sales are processed prevent overselling and stockouts.", imageSrc: "http://img.b2bpic.net/free-photo/industry-4-0-engineer-programs-automated-assembly-line-robot-arm-using-cad-software-tablet_482257-135813.jpg", imageAlt: "Stock tracking interface"},
|
||||
{
|
||||
title: "Multi-Module Sales System",
|
||||
description: "Create complex sales transactions with multiple items, automatic stock reduction, and transaction rollback on error. Process payments in multiple currencies.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/dashboard-user-panel-template_23-2148367405.jpg?_wi=2",
|
||||
imageAlt: "Sales module interface",
|
||||
},
|
||||
title: "Multi-Module Sales System", description: "Create complex sales transactions with multiple items, automatic stock reduction, and transaction rollback on error. Process payments in multiple currencies.", imageSrc: "http://img.b2bpic.net/free-vector/dashboard-user-panel-template_23-2148367405.jpg", imageAlt: "Sales module interface"},
|
||||
{
|
||||
title: "Advanced Analytics & Reporting",
|
||||
description: "Generate detailed sales reports, product performance analytics, and manager statistics. Filter by date, client, manager, product, and currency. Export to Excel and PDF.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-tablet-papers-with-data-charts-desk-used-by-workmates-business-development-corporate-colleagues-working-project-presentation-management-marketing-strategy_482257-32053.jpg?_wi=2",
|
||||
imageAlt: "Analytics dashboard",
|
||||
},
|
||||
title: "Advanced Analytics & Reporting", description: "Generate detailed sales reports, product performance analytics, and manager statistics. Filter by date, client, manager, product, and currency. Export to Excel and PDF.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-tablet-papers-with-data-charts-desk-used-by-workmates-business-development-corporate-colleagues-working-project-presentation-management-marketing-strategy_482257-32053.jpg", imageAlt: "Analytics dashboard"},
|
||||
{
|
||||
title: "Role-Based Access Control",
|
||||
description: "Secure role-based authentication with Admin, Warehouse Staff, Manager, and Cashier roles. Each role has specific permissions for data access and operations.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/airport-safety-security-gates_1284-17297.jpg?_wi=1",
|
||||
imageAlt: "Access control system",
|
||||
},
|
||||
title: "Role-Based Access Control", description: "Secure role-based authentication with Admin, Warehouse Staff, Manager, and Cashier roles. Each role has specific permissions for data access and operations.", imageSrc: "http://img.b2bpic.net/free-vector/airport-safety-security-gates_1284-17297.jpg", imageAlt: "Access control system"},
|
||||
{
|
||||
title: "Client & Counterparty Management",
|
||||
description: "Maintain comprehensive customer database with contact information, preferred currencies, payment history, and notes. Track debt and payment status.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-sitting-chair-using-laptop_23-2147650907.jpg?_wi=1",
|
||||
imageAlt: "Client management interface",
|
||||
},
|
||||
title: "Client & Counterparty Management", description: "Maintain comprehensive customer database with contact information, preferred currencies, payment history, and notes. Track debt and payment status.", imageSrc: "http://img.b2bpic.net/free-photo/man-sitting-chair-using-laptop_23-2147650907.jpg", imageAlt: "Client management interface"},
|
||||
{
|
||||
title: "Mobile-Friendly Dashboard",
|
||||
description: "Responsive design works seamlessly on desktop, tablet, and mobile. Full functionality accessible from any device for on-the-go warehouse operations.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-tablet-electronic-signature-delivery_23-2148890017.jpg?_wi=1",
|
||||
imageAlt: "Mobile responsive design",
|
||||
},
|
||||
title: "Mobile-Friendly Dashboard", description: "Responsive design works seamlessly on desktop, tablet, and mobile. Full functionality accessible from any device for on-the-go warehouse operations.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-tablet-electronic-signature-delivery_23-2148890017.jpg", imageAlt: "Mobile responsive design"},
|
||||
]}
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
textboxLayout="default"
|
||||
@@ -185,6 +111,40 @@ export default function HomePage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Modules Section */}
|
||||
<div id="modules" data-section="modules">
|
||||
<ProductCardFour
|
||||
title="System Modules"
|
||||
description="Comprehensive set of integrated modules covering every aspect of warehouse and sales management."
|
||||
tag="9 Core Modules"
|
||||
tagAnimation="slide-up"
|
||||
products={[
|
||||
{
|
||||
id: "1", name: "Products Module", price: "Full Featured", variant: "Add, edit, delete with SKU, sizes, colors, pricing", imageSrc: "http://img.b2bpic.net/free-vector/creative-delivery-concept_23-2147713639.jpg", imageAlt: "Products management"},
|
||||
{
|
||||
id: "2", name: "Sizes Module", price: "Predefined Sets", variant: "S, M, L, XL and numeric sizes", imageSrc: "http://img.b2bpic.net/free-vector/creative-delivery-concept_23-2147713639.jpg", imageAlt: "Sizes management"},
|
||||
{
|
||||
id: "3", name: "Colors Module", price: "Custom Colors", variant: "Add unlimited product colors", imageSrc: "http://img.b2bpic.net/free-vector/creative-delivery-concept_23-2147713639.jpg", imageAlt: "Colors management"},
|
||||
{
|
||||
id: "4", name: "Sales Module", price: "Transaction Ready", variant: "Multi-item sales with automatic stock reduction", imageSrc: "http://img.b2bpic.net/free-vector/dashboard-user-panel-template_23-2148367405.jpg", imageAlt: "Sales processing"},
|
||||
{
|
||||
id: "5", name: "Clients Management", price: "Full CRM", variant: "Contact, currency, notes, payment tracking", imageSrc: "http://img.b2bpic.net/free-photo/man-sitting-chair-using-laptop_23-2147650907.jpg", imageAlt: "Client management"},
|
||||
{
|
||||
id: "6", name: "Managers Module", price: "Performance Tracking", variant: "Staff management with role assignment", imageSrc: "http://img.b2bpic.net/free-photo/business-team-meeting-discuss-statistical-data-presented-form-digital-graphs-charts_1150-37741.jpg", imageAlt: "Team management"},
|
||||
{
|
||||
id: "7", name: "Reports & Analytics", price: "Full Suite", variant: "Filters, aggregations, Excel and PDF export", imageSrc: "http://img.b2bpic.net/free-photo/close-up-tablet-papers-with-data-charts-desk-used-by-workmates-business-development-corporate-colleagues-working-project-presentation-management-marketing-strategy_482257-32053.jpg", imageAlt: "Reports analytics"},
|
||||
{
|
||||
id: "8", name: "Dashboard", price: "Real-Time KPIs", variant: "Sales overview, stock alerts, top performers", imageSrc: "http://img.b2bpic.net/free-vector/dashboard-user-panel-template_52683-31485.jpg", imageAlt: "Dashboard metrics"},
|
||||
{
|
||||
id: "9", name: "Stock Movement History", price: "Full Audit Trail", variant: "Incoming stock, returns, refunds, transfers", imageSrc: "http://img.b2bpic.net/free-photo/industry-4-0-engineer-programs-automated-assembly-line-robot-arm-using-cad-software-tablet_482257-135813.jpg", imageAlt: "Stock movement tracking"},
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* About/Key Benefits Section */}
|
||||
<div id="about" data-section="about">
|
||||
<MetricSplitMediaAbout
|
||||
@@ -194,17 +154,14 @@ export default function HomePage() {
|
||||
description="WarehouseFlow combines powerful inventory control with intuitive user experience. Our platform is trusted by clothing retailers to manage thousands of SKUs, process hundreds of daily transactions, and maintain audit trails for compliance."
|
||||
metrics={[
|
||||
{
|
||||
value: "1000+",
|
||||
title: "SKUs Supported",
|
||||
},
|
||||
value: "1000+", title: "SKUs Supported"},
|
||||
{
|
||||
value: "Real-Time",
|
||||
title: "Stock Updates",
|
||||
},
|
||||
value: "Real-Time", title: "Stock Updates"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-tablet-electronic-signature-delivery_23-2148890017.jpg?_wi=2"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-tablet-electronic-signature-delivery_23-2148890017.jpg"
|
||||
imageAlt="Platform overview"
|
||||
mediaAnimation="blur-reveal"
|
||||
metricsAnimation="slide-up"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
@@ -218,37 +175,13 @@ export default function HomePage() {
|
||||
tagAnimation="slide-up"
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "99.9%",
|
||||
title: "Uptime SLA",
|
||||
description: "Reliable infrastructure for mission-critical operations",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/dashboard-user-panel-template_52683-31485.jpg?_wi=2",
|
||||
imageAlt: "Uptime reliability",
|
||||
},
|
||||
id: "1", value: "99.9%", title: "Uptime SLA", description: "Reliable infrastructure for mission-critical operations", imageSrc: "http://img.b2bpic.net/free-vector/dashboard-user-panel-template_52683-31485.jpg", imageAlt: "Uptime reliability"},
|
||||
{
|
||||
id: "2",
|
||||
value: "<100ms",
|
||||
title: "Response Time",
|
||||
description: "Lightning-fast transaction processing",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/dashboard-user-panel-template_23-2148367405.jpg?_wi=3",
|
||||
imageAlt: "Performance speed",
|
||||
},
|
||||
id: "2", value: "<100ms", title: "Response Time", description: "Lightning-fast transaction processing", imageSrc: "http://img.b2bpic.net/free-vector/dashboard-user-panel-template_23-2148367405.jpg", imageAlt: "Performance speed"},
|
||||
{
|
||||
id: "3",
|
||||
value: "Unlimited",
|
||||
title: "Stock Items",
|
||||
description: "Scale without limitations as your business grows",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/industry-4-0-engineer-programs-automated-assembly-line-robot-arm-using-cad-software-tablet_482257-135813.jpg?_wi=3",
|
||||
imageAlt: "Scalability",
|
||||
},
|
||||
id: "3", value: "Unlimited", title: "Stock Items", description: "Scale without limitations as your business grows", imageSrc: "http://img.b2bpic.net/free-photo/industry-4-0-engineer-programs-automated-assembly-line-robot-arm-using-cad-software-tablet_482257-135813.jpg", imageAlt: "Scalability"},
|
||||
{
|
||||
id: "4",
|
||||
value: "Role-Based",
|
||||
title: "Access Control",
|
||||
description: "Granular permissions for 4+ user roles",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/airport-safety-security-gates_1284-17297.jpg?_wi=2",
|
||||
imageAlt: "Security access",
|
||||
},
|
||||
id: "4", value: "Role-Based", title: "Access Control", description: "Granular permissions for 4+ user roles", imageSrc: "http://img.b2bpic.net/free-vector/airport-safety-security-gates_1284-17297.jpg", imageAlt: "Security access"},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
@@ -256,6 +189,30 @@ export default function HomePage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Team Section */}
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardOne
|
||||
title="Support & Implementation Team"
|
||||
description="Expert professionals dedicated to your success with setup, training, and ongoing support."
|
||||
tag="Our Team"
|
||||
tagAnimation="slide-up"
|
||||
members={[
|
||||
{
|
||||
id: "1", name: "Sarah Mitchell", role: "Implementation Lead", imageSrc: "http://img.b2bpic.net/free-photo/happy-smiling-businesswoman-looking-camera-with-arms-crossed-portrait_1163-4337.jpg", imageAlt: "Sarah Mitchell"},
|
||||
{
|
||||
id: "2", name: "Priya Patel", role: "Technical Support", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-woman-smiling-posing-purple-wall_176420-2851.jpg", imageAlt: "Priya Patel"},
|
||||
{
|
||||
id: "3", name: "James Rodriguez", role: "Training Specialist", imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg", imageAlt: "James Rodriguez"},
|
||||
{
|
||||
id: "4", name: "Michael Chen", role: "Systems Administrator", imageSrc: "http://img.b2bpic.net/free-photo/confident-african-businesswoman-smiling-closeup-portrait-jobs-career-campaign_53876-129412.jpg", imageAlt: "Michael Chen"},
|
||||
]}
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Testimonials Section */}
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFifteen
|
||||
@@ -264,29 +221,17 @@ export default function HomePage() {
|
||||
author="Amanda Torres, Warehouse Director"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-smiling-businesswoman-looking-camera-with-arms-crossed-portrait_1163-4337.jpg",
|
||||
alt: "User 1",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/happy-smiling-businesswoman-looking-camera-with-arms-crossed-portrait_1163-4337.jpg", alt: "User 1"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-beautiful-woman-smiling-posing-purple-wall_176420-2851.jpg",
|
||||
alt: "User 2",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/young-beautiful-woman-smiling-posing-purple-wall_176420-2851.jpg", alt: "User 2"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg",
|
||||
alt: "User 3",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg", alt: "User 3"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/confident-african-businesswoman-smiling-closeup-portrait-jobs-career-campaign_53876-129412.jpg",
|
||||
alt: "User 4",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/confident-african-businesswoman-smiling-closeup-portrait-jobs-career-campaign_53876-129412.jpg", alt: "User 4"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-fashionable-well-dressed-man-with-beard-posing-outdoors_1328-3267.jpg",
|
||||
alt: "User 5",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-fashionable-well-dressed-man-with-beard-posing-outdoors_1328-3267.jpg", alt: "User 5"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg",
|
||||
alt: "User 6",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg", alt: "User 6"},
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
@@ -294,10 +239,122 @@ export default function HomePage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Pricing Section */}
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardOne
|
||||
title="Transparent Pricing"
|
||||
description="Scale your investment as your business grows. All plans include email support and regular updates."
|
||||
tag="Plans"
|
||||
tagAnimation="slide-up"
|
||||
plans={[
|
||||
{
|
||||
id: "starter", badge: "Small Business", price: "$499/mo", subtitle: "Perfect for startups and small teams", features: [
|
||||
"Up to 5,000 SKUs", "5 user accounts", "Basic reporting", "Single warehouse", "Email support"],
|
||||
},
|
||||
{
|
||||
id: "professional", badge: "Most Popular", badgeIcon: Sparkles,
|
||||
price: "$1,299/mo", subtitle: "Best for growing retail operations", features: [
|
||||
"Up to 50,000 SKUs", "25 user accounts", "Advanced analytics", "Multiple warehouses", "Priority phone support", "Custom reports", "Excel/PDF export", "API access"],
|
||||
},
|
||||
{
|
||||
id: "enterprise", badge: "Enterprise", price: "Custom", subtitle: "For large-scale operations", features: [
|
||||
"Unlimited SKUs", "Unlimited users", "Full audit trails", "Multi-currency support", "Dedicated account manager", "24/7 phone support", "Custom integrations", "On-premise deployment"],
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* FAQ Section */}
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqBase
|
||||
title="Frequently Asked Questions"
|
||||
description="Everything you need to know about WarehouseFlow implementation and operations."
|
||||
tag="Help Center"
|
||||
tagAnimation="slide-up"
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "What is the typical implementation timeline?", content: "Most implementations take 2-4 weeks depending on complexity and data migration requirements. Our team will provide a detailed timeline after initial assessment of your current systems."},
|
||||
{
|
||||
id: "2", title: "Can I import existing inventory data?", content: "Yes, absolutely. We provide data import templates for Excel and CSV files. Our technical team can assist with bulk imports and data validation to ensure accuracy."},
|
||||
{
|
||||
id: "3", title: "Does the system support multi-currency transactions?", content: "Yes, WarehouseFlow supports unlimited currencies with real-time exchange rates. You can set preferred currencies per client and generate reports in any currency."},
|
||||
{
|
||||
id: "4", title: "What happens if stock goes negative due to an error?", content: "The system prevents negative stock through validation. If needed, administrators can generate stock adjustment transactions with full audit trails for compliance purposes."},
|
||||
{
|
||||
id: "5", title: "How is my data backed up and secured?", content: "We maintain automatic daily backups with 30-day retention. All data is encrypted in transit and at rest using industry-standard protocols. Backups are stored in geographically redundant data centers."},
|
||||
{
|
||||
id: "6", title: "Can I customize the dashboard for different roles?", content: "Yes, each role has a customizable dashboard. Admins can configure which metrics, charts, and alerts display for each user role. Custom views can be saved and shared."},
|
||||
{
|
||||
id: "7", title: "What payment methods are supported?", content: "The system integrates with Stripe, PayPal, and bank transfer APIs. You can accept payments via credit card, debit card, e-wallet, and other methods configured in your account."},
|
||||
{
|
||||
id: "8", title: "How do I handle product returns or refunds?", content: "We provide a dedicated returns module that tracks returned items, processes refunds, and adjusts inventory accordingly. Full audit trails are maintained for compliance."},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
faqsAnimation="slide-up"
|
||||
useInvertedBackground={true}
|
||||
animationType="smooth"
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Contact Section */}
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
tag="Newsletter"
|
||||
title="Stay Updated with Product News"
|
||||
description="Subscribe to receive updates about new features, platform improvements, and best practices for warehouse management."
|
||||
background={{
|
||||
variant: "radial-gradient"}}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-vector/template-user-panel-dashboard_23-2148370480.jpg"
|
||||
imageAlt="Newsletter signup"
|
||||
mediaAnimation="blur-reveal"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Subscribe"
|
||||
termsText="We respect your privacy. Unsubscribe at any time with one click."
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Footer */}
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={footerColumns}
|
||||
columns={[
|
||||
{
|
||||
title: "Product", items: [
|
||||
{ label: "Features", href: "#features" },
|
||||
{ label: "Modules", href: "#modules" },
|
||||
{ label: "Pricing", href: "#pricing" },
|
||||
{ label: "Security", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support", items: [
|
||||
{ label: "Documentation", href: "#" },
|
||||
{ label: "Help Center", href: "#faq" },
|
||||
{ label: "Contact", href: "#contact" },
|
||||
{ label: "Status Page", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Team", href: "#team" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Careers", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Cookie Policy", href: "#" },
|
||||
{ label: "Compliance", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2025 WarehouseFlow. All rights reserved."
|
||||
bottomRightText="Built for enterprise warehouse management"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user