import Link from "next/link" const privatePlans = [ { name: "Free", price: "$0", period: "forever", apps: "5", features: ["5 job applications/month", "5 AI resume customizations", "Basic application tracker"], cta: "Get Started", ctaStyle: "bg-white/10 hover:bg-white/20" }, { name: "Starter", price: "$9", period: "/mo", apps: "50", features: ["50 job applications/month", "50 AI resume customizations", "Add your own API keys", "Email support"], cta: "Start Now", ctaStyle: "bg-blue-500 hover:bg-blue-600" }, { name: "Pro", price: "$39", period: "/mo", apps: "100", badge: "Most Popular", highlight: true, features: ["100 job applications/month", "100 AI resume customizations", "Add your own API keys", "LinkedIn resume import", "Priority support"], cta: "Go Pro", ctaStyle: "bg-blue-500 hover:bg-blue-600" }, { name: "Ultra", price: "$69", period: "/mo", apps: "200", features: ["200 job applications/month", "200 AI resume customizations", "Add your own API keys", "LinkedIn resume import", "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 submissions/month", "10 client profiles", "White-label dashboard", "API access"], 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 submissions/month", "50 client profiles", "White-label dashboard", "Priority support"], cta: "Grow", 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 submissions/month", "150 client profiles", "White-label dashboard", "Dedicated account manager"], cta: "Scale", 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 submissions/month", "500 client profiles", "White-label dashboard", "Dedicated account manager", "Custom integrations"], cta: "Enterprise", ctaStyle: "bg-slate-600 hover:bg-slate-500" }, ] export default function LandingPage() { return (
{/* Nav */} {/* Hero */}
AI-Powered Job Application Automation

Stop Manually Applying.
Let AI Handle It.

Upload your resume once. Set your preferences. AI finds matching jobs, rewrites your resume for each one, and applies — while you sleep.

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

How It Works

{[ { step: "01", title: "Create Your Profile", desc: "Upload your resume. Connect your LinkedIn. Tell us what jobs you want — keywords, location, salary range." }, { step: "02", title: "AI Finds & Customizes", desc: "We search across multiple job boards. For each match, AI rewrites your resume and writes a personalized cover letter." }, { step: "03", title: "Apply & Track", desc: "Apply with one click or let AI apply automatically. Track every application status in your dashboard." } ].map((item) => (
{item.step}

{item.title}

{item.desc}

))}
{/* Private Plans */}

For Job Seekers

Choose your monthly application limit

{privatePlans.map((plan) => (
{plan.badge && (
{plan.badge}
)}
{plan.name}
{plan.price} {plan.period}
{plan.apps} apps/month
    {plan.features.map((f) => (
  • {f}
  • ))}
{plan.cta}
))}
Login with LinkedIn — import your saved resumes automatically
{/* Agency Plans */}
For Recruiting Agencies

Agency Plans

Manage multiple clients. Each plan has a hard submission cap — no unlimited.

{agencyPlans.map((plan) => (
{plan.badge && (
{plan.badge}
)}
Agency {plan.name}
{plan.price} {plan.period}
{plan.submissions} submissions • {plan.clients} clients
    {plan.features.map((f) => (
  • {f}
  • ))}
{plan.cta}
))}
All plans have hard caps. No unlimited access for agencies.
{/* Footer */}
) }