import { Link } from "react-router-dom"; import { Layout } from "@/components/layout/Layout"; import { Button } from "@/components/ui/button"; import { TrendingUp, DollarSign, Users, Award, CheckCircle2, ArrowRight, Truck, Shield, BarChart3, Zap, MapPin, Star, Clock, Heart } from "lucide-react"; import heroImage from "@/assets/hero-showroom.jpg"; import happyCustomerImg from "@/assets/happy-customer.jpg"; import teamSuccessImg from "@/assets/team-success.jpg"; import refrigeratorImg from "@/assets/refrigerator-modern.jpg"; const stats = [ { value: "5+", label: "Years Proven", icon: Clock }, { value: "40%+", label: "Gross Margins", icon: TrendingUp }, { value: "150+", label: "Stores", icon: MapPin }, { value: "Quick", label: "ROI", icon: Heart }, ]; const benefits = [ { icon: Truck, title: "Exclusive Supplier Network", description: "Direct access to scratch & dent inventory from Samsung, LG, Whirlpool, GE and more at 40-70% below retail.", }, { icon: BarChart3, title: "Proven Business Model", description: "Tested systems for inventory management, sales optimization, and operations that drive consistent profitability.", }, { icon: Shield, title: "Comprehensive Training", description: "Optional training from successful stores' experience from store opening to the ongoing operational assistance.", }, { icon: Zap, title: "Low Startup Investment", description: "Get started with significantly lower investment than traditional retail distribution models.", }, ]; const steps = [ { step: "01", title: "Apply", description: "Fill out our partner inquiry form" }, { step: "02", title: "Discover", description: "Learn about the opportunity by connecting with the A4L team" }, { step: "03", title: "Review", description: "Receive and review distribution agreements" }, { step: "04", title: "Orientation", description: "Get equipped to set up your store" }, { step: "05", title: "Launch", description: "Open your business" }, ]; export default function Index() { return ( {/* Hero Section */}
Appliance showroom
{/* Hero Text */}
Welcome to Appliances 4 Less

Start Your Profitable
Appliance Business
Today

Become an Appliances 4 Less distribution partner and tap into the booming scratch & dent market. Exclusive territories, proven margins, and comprehensive support.

{/* Stats */}
{stats.map((stat) => (
{stat.value}
{stat.label}
))}

150+ successful stores across the United States

{/* Benefits Section */}

Why Choose A4L

{benefits.map((benefit, index) => (

{benefit.title}

{benefit.description}

))}
); }