import { Link } from "react-router-dom"; import { createPageUrl } from "@/utils"; import { Zap, Search, Package, DollarSign, TrendingUp, Sparkles, ArrowRight, CheckCircle2 } from "lucide-react"; export default function Landing() { const features = [ { icon: Search, title: "Smart Finder", desc: "Discover deals across multiple platforms instantly" }, { icon: Package, title: "Inventory Management", desc: "Track stock, condition, and storage location" }, { icon: Sparkles, title: "AI Listing Creator", desc: "Generate optimized eBay listings in seconds" }, { icon: DollarSign, title: "Profit Tracking", desc: "Monitor margins and ROI on every flip" }, { icon: TrendingUp, title: "Market Analytics", desc: "Multi-platform trend analysis & pricing" }, { icon: Zap, title: "One Dashboard", desc: "Manage everything from a single view" } ]; const benefits = [ "Find profitable items 10x faster", "Automate listing creation with AI", "Track profit margins in real-time", "Analyze competitor pricing across platforms", "Never miss a trending opportunity" ]; return (
{/* Header */}
ProfitHunter
Enter App
{/* Hero Section */}
For Resellers & Flippers

Turn Your Flipping Game Pro

Find better deals, create listings 10x faster, and maximize profit margins with AI-powered sourcing intel and real-time market analytics.

Start Free Now Learn More
{/* Features Grid */}

Everything You Need

{features.map((feature, i) => { const Icon = feature.icon; return (

{feature.title}

{feature.desc}

); })}
{/* Benefits Section */}

Why Resellers Choose ProfitHunter

    {benefits.map((benefit, i) => (
  • {benefit}
  • ))}
3-5x

Average profit margin improvement within first month

Based on early users who track all flips in the app

{/* Stats Section */}
1000+

Deals Found Daily

10s

Seconds to List an Item

Real-Time

Market Price Updates

{/* CTA Section */}

Ready to Scale Your Flipping Business?

Start finding better deals and creating listings like a pro today.

Start Free Now
{/* Footer */}

© 2026 ProfitHunter. Built for resellers who want to win.

); }