diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx
index 1f6b9df..855d252 100644
--- a/src/pages/HomePage.tsx
+++ b/src/pages/HomePage.tsx
@@ -6,163 +6,137 @@ import FeaturesRevealCardsBento from '@/components/sections/features/FeaturesRev
import HeroBrand from '@/components/sections/hero/HeroBrand';
import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards';
import TestimonialRatingCards from '@/components/sections/testimonial/TestimonialRatingCards';
-import { MessageSquare, TrendingUp, Zap } from "lucide-react";
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function HomePage() {
return (
<>
-
-
+
+
-
-
+ brand="AIXPERT EMPLOYEE AI"
+ description="Train AI employees on your business knowledge and automate customer support, sales inquiries, onboarding, and operations. Your best employee works 24/7."
+ primaryButton={{ text: "Create AI Employee", href: "#contact" }}
+ secondaryButton={{ text: "Watch Demo", href: "#demo" }}
+ imageSrc="http://img.b2bpic.net/free-photo/urban-apartment-with-minimalist-home-office-wooden-furniture_482257-120933.jpg"
+ />
+
+
-
-
+
+ title="Enterprise-Grade Intelligence for Modern Teams"
+ primaryButton={{ text: "Explore Features", href: "#features" }}
+ />
+
+
-
-
+
+
-
-
+ tag="Platform Features"
+ title="Everything you need to automate your business"
+ description="Our platform empowers your team to scale without the overhead."
+ items={[
+ {
+ title: "Knowledge Training", description: "Upload manuals, SOPs, and website URLs to create a company-trained AI employee.", imageSrc: "https://storage.googleapis.com/webild/default/no-image.jpg?id=aqymnt"
+ },
+ {
+ title: "Support Automation", description: "Resolve tickets instantly with accurate answers based on company policies.", imageSrc: "http://img.b2bpic.net/free-photo/gear-icon-set-isolated-background_53876-71277.jpg"
+ },
+ {
+ title: "Sales & Leads", description: "Capture leads, qualify prospects, and schedule meetings while you sleep.", imageSrc: "http://img.b2bpic.net/free-photo/marketing-strategy-planning-strategy-concept_53876-42950.jpg"
+ }
+ ]}
+ />
+
+
-
-
+
+
-
-
+ tag="Capabilities"
+ title="Powerful tools for enterprise scale"
+ description="A comprehensive suite for managing AI workforce deployments."
+ items={[
+ { title: "Employee Builder", description: "Configure personas, departments, and specific training sources.", href: "#", imageSrc: "http://img.b2bpic.net/free-vector/smart-home-management-illustration_23-2148609718.jpg" },
+ { title: "Real-time Metrics", description: "Monitor performance, response rates, and cost savings across the organization.", href: "#", imageSrc: "http://img.b2bpic.net/free-photo/modern-equipped-computer-lab_23-2149241207.jpg" },
+ { title: "Workflow Builder", description: "Drag and drop complex automation workflows for any scenario.", href: "#", imageSrc: "http://img.b2bpic.net/free-photo/female-web-designer-office-with-notebook_23-2149749858.jpg" },
+ { title: "Voice AI Agents", description: "Automated call center solutions with natural language understanding.", href: "#", imageSrc: "http://img.b2bpic.net/free-photo/empty-soundproof-control-room-professional-recording-studio_482257-83540.jpg" },
+ { title: "Escalation Monitor", description: "Human-in-the-loop system with confidence scoring and automated handoff.", href: "#", imageSrc: "http://img.b2bpic.net/free-photo/data-management-perfomance-graph-concept_53876-167113.jpg" },
+ { title: "Knowledge Center", description: "Centralized version control for all your AI training data.", href: "#", imageSrc: "http://img.b2bpic.net/free-vector/blogger-review-concept_23-2148546453.jpg" },
+ { title: "Admin & Billing", description: "Manage billing, user roles, and system health from one place.", href: "#", imageSrc: "http://img.b2bpic.net/free-photo/data-center-technician-inspecting-gear-doing-maintenance-tasks_482257-123105.jpg" }
+ ]}
+ />
+
+
-
-
+
+
-
-
+ tag="Performance"
+ title="Proven enterprise results"
+ description="Our impact on business metrics."
+ metrics={[
+ { icon: "MessageSquare", title: "Conversations Handled", value: "1.2M+" },
+ { icon: "Zap", title: "Hours Saved", value: "45k+" },
+ { icon: "TrendingUp", title: "Cost Reduction", value: "60%" }
+ ]}
+ />
+
+
-
-
+
+
-
-
+ tag="Testimonials"
+ title="Trusted by industry leaders"
+ description="What our partners say."
+ testimonials={[
+ { name: "Elena Rodriguez", role: "COO", quote: "The platform revolutionized our support operations completely.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/serious-executive-with-short-hair-crossed-arms_1149-89.jpg" },
+ { name: "Marcus Chen", role: "VP Sales", quote: "Lead qualification has never been this efficient or scalable.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/closeup-handsome-middle-aged-business-leader_1262-4822.jpg" },
+ { name: "Sarah Miller", role: "HR Director", quote: "Our onboarding process is now 70% faster thanks to AIXPERT.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/middle-eastern-businessman-does-daily-tasks-corporate-job_482257-116713.jpg" },
+ { name: "David Okafor", role: "Finance Head", quote: "Incredible ROI and seamless integration into our existing stack.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg" },
+ { name: "Jane Wilson", role: "Support Manager", quote: "Confidence scores are high, and human handoff is effortless.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg" }
+ ]}
+ />
+
+
-
-
+
+
-
-
+ tag="Support"
+ title="Frequently Asked Questions"
+ description="Find answers to common questions about our platform."
+ categories={[
+ {
+ name: "General", items: [
+ { question: "Is my data secure?", answer: "Yes, we use industry-standard encryption and compliance protocols." },
+ { question: "Can I integrate custom APIs?", answer: "Yes, enterprise plans include full access to our robust API." }
+ ]
+ },
+ {
+ name: "Training", items: [
+ { question: "How do I update knowledge?", answer: "Updates are instantaneous via our training portal." }
+ ]
+ }
+ ]}
+ />
+
+
-
>
);
}