import Link from "next/link" const jobseekerPlans = [ { name: "Free", price: "$0", period: "forever", apps: "5", badge: "", highlight: false, features: ["5 AI job applications/month", "5 AI resume customizations/month", "Application tracker", "Add your own API keys"], cta: "Get Started", ctaStyle: "bg-white/10 hover:bg-white/20" }, { name: "Starter", price: "$9", period: "/mo", apps: "50", badge: "", highlight: false, features: ["50 AI job applications/month", "50 AI resume customizations/month", "Application tracker", "Add your own API keys"], cta: "Start Applying", ctaStyle: "bg-blue-500 hover:bg-blue-600" }, { name: "Pro", price: "$39", period: "/mo", apps: "100", badge: "Popular", highlight: true, features: ["100 AI job applications/month", "100 AI resume customizations/month", "Application tracker", "Add your own API keys", "Email notifications"], cta: "Go Pro", ctaStyle: "bg-blue-500 hover:bg-blue-600" }, { name: "Ultra", price: "$69", period: "/mo", apps: "200", badge: "", highlight: false, features: ["200 AI job applications/month", "200 AI resume customizations/month", "Priority processing", "Email + SMS notifications"], cta: "Go Ultra", ctaStyle: "bg-slate-600 hover:bg-slate-500" }, ] const agencyPlans = [ { name: "Starter", price: "$555", period: "/mo", submissions: "1,000", clients: "10", badge: "", highlight: false, features: ["1,000 job submissions/month", "Up to 10 client profiles", "AI resume tailoring", "White-label dashboard", "Priority support"], cta: "Start Agency", ctaStyle: "bg-purple-600 hover:bg-purple-500" }, { name: "Growth", price: "$999", period: "/mo", submissions: "3,000", clients: "50", badge: "", highlight: true, features: ["3,000 job submissions/month", "Up to 50 client profiles", "AI resume tailoring", "White-label dashboard", "Priority support"], cta: "Grow Agency", ctaStyle: "bg-purple-600 hover:bg-purple-500" }, { name: "Scale", price: "$1,499", period: "/mo", submissions: "5,000", clients: "150", badge: "", highlight: false, features: ["5,000 job submissions/month", "Up to 150 client profiles", "AI resume tailoring", "White-label dashboard", "Dedicated account manager"], cta: "Scale Up", ctaStyle: "bg-slate-600 hover:bg-slate-500" }, { name: "Enterprise", price: "$2,222", period: "/mo", submissions: "10,000", clients: "500", badge: "", highlight: false, features: ["10,000 job submissions/month", "Up to 500 client profiles", "AI resume tailoring", "White-label dashboard", "Dedicated account manager", "Custom integrations"], cta: "Get Enterprise", ctaStyle: "bg-slate-600 hover:bg-slate-500" }, ] export default function LandingPage() { return (
{/* Nav */} {/* Hero */}
Your Personal AI Job Agent

Stop Applying to Jobs.
Let AI Do It For You.

Upload your resume once. Set your keywords. Our AI finds every matching job, rewrites your resume + cover letter for each one, and applies automatically — while you sleep.

Start Free — 5 Applications
{/* How It Works */}

How AutoJobs Works

{[ { step: "01", title: "Create Your Profile", desc: "Upload your resume. Tell us what jobs you want — keywords, location, salary range." }, { step: "02", title: "AI Finds & Customizes", desc: "We search Jooble, JSearch, and more. AI rewrites your resume and writes cover letters." }, { step: "03", title: "Apply & Track", desc: "Apply with one click. Track every application status — from applied to offer." } ].map((item) => (
{item.step}

{item.title}

{item.desc}

))}
{/* Jobseeker Pricing */}

For Job Seekers

Pick the plan that fits your job search.

{jobseekerPlans.map((plan) => (
{plan.badge && (
{plan.badge}
)}
{plan.name}
{plan.price} {plan.period}
{plan.apps} apps + AI customizations/mo
    {plan.features.map((f) => (
  • {f}
  • ))}
{plan.cta}
))}
{/* Agency Pricing */}
For Recruiting Agencies

Agency Plans — Manage Multiple Clients

Run job applications for your entire client roster. Each plan includes client profile management and submission limits.

{agencyPlans.map((plan) => (
{plan.badge && (
{plan.badge}
)}
{plan.name}
{plan.price} {plan.period}
{plan.submissions} submissions • {plan.clients} clients
    {plan.features.map((f) => (
  • {f}
  • ))}
{plan.cta}
))}

No unlimited agency plan — all submissions are capped to prevent abuse.

{/* Stats */}
<$0.01
Cost per application
15-25s
AI time per job customization
500+
Jobs found per search
{/* Footer */}
) }