/* Pricing — three plans: Starter / Standard (most popular) / Premium (luxe dark) */ function Pricing() { const plans = [ { name: "Starter", tagline: "For one-person businesses and single-location shops.", variant: "starter", setupPrice: "€699", setupLabel: "one-time setup", monthly: "€39/mo", yearly: "€390/yr", yearlySave: "save €78", features: [ { included: true, text: "Custom 4–6 page website, designed from scratch" }, { included: true, text: "Built around your photos — we'll work with what you have" }, { included: true, text: "Your own .ie or .com domain" }, { included: true, text: "One email on your domain" }, { included: true, text: "EU hosting · SSL · weekly backups · DDoS protection" }, { included: true, text: "Standard on-page SEO + Google Business Profile setup" }, { included: true, text: "Mobile and tablet optimised" }, { included: true, text: "One round of revisions after launch" }, { included: false, text: "On-site photo shoot" }, { included: false, text: "Global CDN / daily backups" }, { included: false, text: "Ongoing edits (available on-demand, €60/hr)" }, ], cta: "Start a Starter plan", ctaClass: "btn-ghost", }, { name: "Standard", tagline: "For established shops, services, studios, and growing local businesses.", variant: "standard", tag: "Most popular", setupPrice: "€1,299", setupLabel: "one-time setup", monthly: "€59/mo", yearly: "€590/yr", yearlySave: "save €118", features: [ { included: true, text: "Custom 6–10 page website" }, { included: true, text: "Half-day on-site photo shoot — interior, exterior, people, product" }, { included: true, text: "Your .ie or .com domain" }, { included: true, text: "Up to 3 emails on your domain" }, { included: true, text: "EU hosting · global CDN · daily backups · NVMe storage" }, { included: true, text: "SSL, DDoS protection, Web Application Firewall" }, { included: true, text: "Full on-page + local SEO + Google Business Profile" }, { included: true, text: "2 hours of small edits included every month" }, { included: true, text: "Quarterly performance review" }, { included: true, text: "Two rounds of revisions after launch" }, { included: false, text: "AI / Answer-Engine optimisation" }, ], cta: "Start a Standard plan", ctaClass: "btn-primary", }, { name: "Premium", tagline: "For multi-brand owners and businesses that want to be found by AI.", variant: "premium", setupPrice: "From €2,499", setupLabel: "one-time setup", monthly: "€129/mo", yearly: "€1,290/yr", yearlySave: "save €258", features: [ { included: true, text: "Up to 3 websites — multi-location, multi-brand, or sister businesses" }, { included: true, text: "Full-day photo shoot + a short brand video (60–90 seconds)" }, { included: true, text: "Your domains and business emails sorted (subject to availability)" }, { included: true, text: "Dedicated hosting resources · global CDN · daily backups · NVMe storage" }, { included: true, text: "Priority server support and traffic headroom" }, { included: true, text: "Premium SEO + AEO — schema, structured data, citation-ready for ChatGPT, Claude, Perplexity, Gemini" }, { included: true, text: "Google Business Profile setup + monthly review" }, { included: true, text: "Unlimited small edits + new pages, included (within reason)" }, { included: true, text: "Monthly performance + AEO visibility report" }, { included: true, text: "Priority studio support — same working day" }, { included: true, text: "Unlimited revisions in the first 30 days" }, ], cta: "Talk about Premium", ctaClass: "btn-gold", }, ]; return (
Three plans

One subscription. No surprises.

Setup once. Then monthly or yearly — covers the lot. The price you see in year one is the price you keep paying. No surprise hosting bills in month thirteen.

{plans.map(plan => (
{plan.tag && ( {plan.tag} )}

{plan.name}

{plan.tagline}

{plan.setupLabel} {plan.setupPrice}
{plan.monthly} or {plan.yearly} {plan.yearlySave}
    {plan.features.map(f => (
  • {f.text}
  • ))}
{plan.cta}
))}

All plans: EU hosting · SSL · backups · GDPR-native · mobile-first · WordPress · no lock-in after year one · Irish studio you can ring.

Not included on any plan: e-commerce, custom integrations, copywriting beyond pages we build. Booking systems available as an add-on.

); } window.Pricing = Pricing;