import Link from "next/link" const plans = [ { name: "Free", price: "$0", period: "forever", apps: "5", ai: "5", badge: "Start Here", highlight: false, features: ["5 AI job applications/month", "5 AI resume customizations/month", "Application tracker", "Add your own API keys", "Multi-source search"], cta: "Get Started Free", ctaStyle: "bg-white/10 hover:bg-white/20" }, { name: "Starter", price: "$9", period: "/month", apps: "50", ai: "50", badge: "", highlight: false, features: ["50 AI job applications/month", "50 AI resume customizations/month", "Application tracker", "Add your own API keys", "Email notifications"], cta: "Start Applying", ctaStyle: "bg-blue-500 hover:bg-blue-600" }, { name: "Pro", price: "$39", period: "/month", apps: "100", ai: "100", badge: "Most Popular", highlight: true, features: ["100 AI job applications/month", "100 AI resume customizations/month", "Application tracker", "Add your own API keys", "Email notifications", "Interview prep tips"], cta: "Go Pro", ctaStyle: "bg-blue-500 hover:bg-blue-600" }, { name: "Ultra", price: "$69", period: "/month", apps: "200", ai: "200", badge: "", highlight: false, features: ["200 AI job applications/month", "200 AI resume customizations/month", "Priority processing", "Add your own API keys", "Email + SMS notifications"], cta: "Go Ultra", 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 View All Plans
{/* How It Works */}

How AutoJobs Works

Three steps to never manually applying to a job again.

{[ { step: "01", title: "Create Your Profile", desc: "Upload your resume. Tell us what jobs you want — keywords, location, salary range. Add your own API keys for job search engines." }, { step: "02", title: "AI Finds & Customizes", desc: "We search Jooble, JSearch, and more. For each match, AI rewrites your resume and writes a personalized cover letter targeting that company." }, { step: "03", title: "Apply & Track", desc: "Apply with one click. Track every application status — applied, interviewing, offer, rejected. Land more interviews." } ].map((item) => (
{item.step}

{item.title}

{item.desc}

))}
{/* Features Grid */}

Everything You Need to Land the Job

{[ { icon: "🎯", title: "AI Resume Tailoring", desc: "Every resume is rewritten to match the exact job description and keywords" }, { icon: "✉️", title: "AI Cover Letters", desc: "Personalized for each company — their mission, news, and your fit" }, { icon: "🔍", title: "Multi-Source Search", desc: "Jooble, JSearch, and more — aggregated and deduplicated" }, { icon: "📊", title: "Application Tracker", desc: "Dashboard shows every application, status, interview invites" }, { icon: "🔑", title: "Your Own API Keys", desc: "Add your own keys — you control your data and spending" }, { icon: "⚡", title: "Apply While You Sleep", desc: "AI works 24/7. Wake up to new opportunities submitted" }, { icon: "📱", title: "Mobile Dashboard", desc: "Track your applications from anywhere — phone, tablet, desktop" }, { icon: "📈", title: "Usage Analytics", desc: "See how many applications you've sent this month" }, { icon: "🔒", title: "Private & Secure", desc: "Your data stays yours. API keys are encrypted." }, ].map((f) => (
{f.icon}

{f.title}

{f.desc}

))}
{/* Pricing */}

Simple, Transparent Pricing

Pick the plan that fits your job search. No hidden fees.

{plans.map((plan) => (
{plan.badge && (
{plan.badge}
)}
{plan.name}
{plan.price} {plan.period}
{plan.apps} applications + {plan.ai} AI customizations/month
    {plan.features.map((f) => (
  • {f}
  • ))}
{plan.cta}
))}

Need more? Business (500/mo) = $119  |  Unlimited = $319/month

{/* Stats */}
5
Free applications/month
<$0.01
Cost per AI customization
15-25s
AI time per application
{/* Footer */}
) }