"use client"; import { Container } from "@/components/container"; import { Heading } from "@/components/heading"; import { Subheading } from "@/components/subheading"; import { Card, CardHeader, CardTitle, CardDescription, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { Check, Zap } from "lucide-react"; import { motion } from "framer-motion"; const services = [ { title: "Growth Audit", price: "$2,500", description: "A comprehensive deep-dive into your current funnel and growth metrics.", features: ["Full Funnel Analysis", "Conversion Rate Audit", "Growth Roadmap", "60-min Strategy Session"], cta: "Get an Audit", popular: false }, { title: "Fractional Head of Growth", price: "$5,000/mo", description: "Ongoing strategic leadership to build and manage your growth engine.", features: ["Weekly Strategy Calls", "Team Management", "Experiment Design", "Unlimited Slack Support"], cta: "Apply to Work Together", popular: true }, { title: "Custom Workshop", price: "Custom", description: "Intensive training for your marketing and product teams.", features: ["Tailored Curriculum", "Hands-on Implementation", "Post-Workshop Support", "Team Alignment"], cta: "Inquire Now", popular: false } ]; export function Services() { return (
Strategic Services Tailored solutions designed to solve your specific growth bottlenecks and accelerate revenue.
{services.map((service, index) => ( {service.popular && (
Most Popular
)} {service.title}
{service.price}
{service.description}
    {service.features.map((feature, i) => (
  • {feature}
  • ))}
))}
); }