// Process + Stack + Pricing + Testimonials + CTA + Footer const { Icons: BI, SectionHead: BHead } = window; function Process() { const steps = [ { n: '01', t: 'Discover', d: 'Two 60-min calls. We dig into your customer, your back-office, your past launches. No NDA dance — we sign yours.' }, { n: '02', t: 'Architect', d: 'Theme architecture, section library, integrations map, redirects sheet. Approve before we touch a line of Liquid.' }, { n: '03', t: 'Build', d: 'Weekly Loom walkthroughs on a staging store. You comment in Figma; we ship by Friday.' }, { n: '04', t: 'Launch & tune', d: 'Soft launch on a Tuesday. Two weeks of post-launch tuning included — bug fixes, speed, conversion patches.' }, ]; return (
{steps.map(s => (
{s.n}

{s.t}

{s.d}

))}
); } function Stack() { const items = [ { name: 'Shopify', cat: 'Platform', g: 'S' }, { name: 'Hydrogen', cat: 'Headless', g: 'H' }, { name: 'Liquid', cat: 'Templating', g: 'Lq' }, { name: 'Klaviyo', cat: 'Email · SMS', g: 'K' }, { name: 'Recharge', cat: 'Subscriptions',g: 'Rc' }, { name: 'Yotpo', cat: 'Reviews', g: 'Y' }, { name: 'Gorgias', cat: 'Support', g: 'G' }, { name: 'Algolia', cat: 'Search', g: 'Al' }, { name: 'Sanity', cat: 'Headless CMS', g: 'Sn' }, { name: 'Stripe', cat: 'Payments', g: 'St' }, { name: 'GA4', cat: 'Analytics', g: 'GA' }, { name: 'Triple Whale',cat: 'Attribution', g: 'Tw' }, ]; return (
{items.map(it => (
{it.g}
{it.name}
{it.cat}
))}
); } function Pricing() { const plans = [ { name: 'Audit', price: '₹49k', per: '/ one-off', desc: 'A 30-page diagnostic for an existing store. Speed, UX, code, conversion, SEO — scored and ranked.', feats: ['30-page written audit', 'Loom walkthrough (60 min)', 'Prioritised fix list', '2-week turnaround'], cta: 'Start an audit', featured: false, }, { name: 'Studio', price: '₹2.8L', per: '/ project', desc: 'Fixed-scope builds. Figma → Shopify, migrations, theme dev, B2B setup. Most clients live here.', feats: ['Custom Shopify 2.0 theme', 'Up to 12 page templates', 'Klaviyo + analytics setup', '2 weeks post-launch support', 'Async via Loom + Slack'], cta: 'Book a discovery call', featured: true, tag: 'Most popular', }, { name: 'Retainer', price: '₹1.2L', per: '/ month', desc: 'For Plus brands and DTCs over ₹5 Cr ARR. Dedicated dev hours, sprint planning, on-call.', feats: ['Dedicated lead dev', '60 dev hrs / month', 'Weekly sprint reviews', 'Roadmap planning', '4-hour response SLA'], cta: 'Talk retainer', featured: false, }, ]; return (
{plans.map(p => (
{p.tag && {p.tag}}

{p.name}

{p.price} {p.per}

{p.desc}

    {p.feats.map(f => (
  • {f}
  • ))}
{p.cta}
))}

Pricing shown in INR. Quotes available in USD, GBP, AED. Plus engagements scoped on request.

); } function Testimonials() { const t = [ { tone: '', q: "We'd been quoted six figures by a London agency for what MaximiseTeck shipped in five weeks. The store outperforms our old one by 3.1× on conversion.", n: 'Priya Sharma', r: 'Head of Ecom, DTC apparel brand', i: 'PS', }, { tone: 'forest', q: "Our Magento → Shopify Plus migration was the part of the year I was most afraid of. They de-risked it. Zero downtime, zero SEO drop, every redirect mapped.", n: 'Daniel Boateng', r: 'CTO, UK skincare DTC', i: 'DB', }, { tone: 'lime', q: "I'd hire them again on a handshake. The async working style — Loom walkthroughs every Friday — is the only thing that's let me stay sane through two launches.", n: 'Aarav Mehta', r: 'Founder, Mumbai-based coffee brand', i: 'AM', }, ]; return (
{t.map((x, i) => (
"
{x.q}
{x.i}
{x.n}
{x.r}
))}
); } function CTA() { return (
2 build slots open · June 2026

Got a Shopify problem
worth solving?

30-minute discovery call. We come prepared — share your URL when you book and we'll have a punch list ready.

Book a discovery call WhatsApp the studio
); } function Footer() { const subs = [ { url: 'shopify.maximiseteck.com', title: 'Shopify Studio', here: true }, { url: 'build.maximiseteck.com', title: 'Web & SaaS' }, { url: 'studio.maximiseteck.com', title: 'Content Creation' }, { url: 'grow.maximiseteck.com', title: 'Performance & Growth' }, ]; return ( ); } window.Process = Process; window.Stack = Stack; window.Pricing = Pricing; window.Testimonials = Testimonials; window.CTA = CTA; window.Footer = Footer;