import React, { useState } from 'react'; import { motion } from 'framer-motion'; import { Check } from 'lucide-react'; export const Pricing: React.FC = () => { return (

Invest in Your System.

Costs less than a single session with a personal trainer.

{/* Monthly Plan */}

Monthly

$14.99 /mo
    {["Full AI Co-Pilot Access", "Dynamic Macro Adjustment", "Basic Training Integration", "Community Support"].map((item, i) => (
  • {item}
  • ))}
{/* Annual Plan - Highlighted */}
BEST VALUE

Annual

$9.99 /mo
Billed $119.88 yearly
    {["Everything in Monthly", "Unlimited Strategy Changes", "Priority Support", "Advanced Trend Analytics"].map((item, i) => (
  • {item}
  • ))}

Cancel anytime.

); };