import Layout from "@/components/layout/Layout"; import { Check, Star, Zap, Crown } from "lucide-react"; import Image from "next/image"; export const metadata = { title: "Pricing | RankRunners - SEO, Web Design & Digital Marketing Agency", description: "Learn how RankRunners LLC collects, uses, and protects your information.", }; export default function PricingPage() { const pricingPlans = [ { id: 1, name: "Starter Care", price: "$175", description: "Great for getting started or low-maintenance needs.", buttonText: "Buy Now", isPopular: false, features: [ "Custom onboarding", "Business grade website hosting", "24/7 website protection", "Code & speed optimization", "Google product integrations", "On-Demand monthly revisions", "Free SSL certificate", "50GB of storage", "Weekly Backups", ], stars: 1, }, { id: 2, name: "Steady Support", price: "$250", description: "Ideal for businesses needing regular updates.", buttonText: "Get In Touch", isPopular: true, features: [ "Custom onboarding", "Business grade website hosting", "24/7 website protection", "Code & speed optimization", "Google product integrations", "On-Demand bi-weekly revisions", "Free SSL certificate", "100GB of additional storage", "Daily Backups", "Site performance investigations", "Form submission monitoring", "Proprietary CMS Integration", ], stars: 2, }, { id: 3, name: "Total Coverage", price: "$400", description: "Perfect for hands-off clients who want it all handled.", buttonText: "Get In Touch", isPopular: false, features: [ "Custom onboarding", "Business grade website hosting", "24/7 website protection", "Code & speed optimization", "Google product integrations", "Unlimited revisions", "Free SSL certificate", "100GB of additional storage", "Daily Backups + Off-site Backups", "Site performance investigations", "Form submission monitoring", "Proprietary CMS Integration", "Dedicated senior account manager", ], stars: 3, }, ]; const renderStars = (count) => { const stars = []; for (let i = 0; i < 3; i++) { stars.push( Star ); } return stars; }; return (
PLANS AND PRICING

Full-service web management built to outrun the competition.

{pricingPlans.map((plan) => (
{plan.isPopular && (
Best Value
)}

{plan.name}

{renderStars(plan.stars)}

{plan.description}

{plan.price}
USD /mo
{plan.features.map((feature, index) => (
{feature}
))}
))}
); }