import Link from "next/link" import { Button } from "@/components/ui/button" import { Shield, BarChart3, Wrench, Globe, ArrowRight } from "lucide-react" const addons = [ { title: "Maintenance Plan", description: "Monthly security updates, performance monitoring, and content changes.", price: "From $299/mo", icon: Wrench, }, { title: "SEO Audit & Strategy", description: "Comprehensive audit, keyword research, and a 3-month optimization roadmap.", price: "From $999", icon: BarChart3, }, { title: "Security Hardening", description: "Advanced security audits, penetration testing, and compliance setup.", price: "From $1,499", icon: Shield, }, { title: "Analytics & Tracking", description: "Google Analytics, heatmaps, conversion tracking, and monthly reports.", price: "From $499", icon: Globe, }, ] export function AddOnServices() { return (

Extras

Add-on Services

Enhance your project with these supplementary services.

{addons.map((addon, i) => (

{addon.title}

{addon.description}

{addon.price}

))}
) }