// Marquee + Services + Cases
const { Icons: SI } = window;
function Marquee() {
const items = [
'Beardo', 'Mokobara', 'Sleepy Owl', 'Boat', 'Wild Stone',
'The Souled Store', 'Plix', 'Mamaearth', 'Snitch', 'Bewakoof',
'Wakefit', 'Pilgrim',
];
const row = (
{[...items, ...items].map((b, i) => (
{b}
))}
);
return (
);
}
function SectionHead({ num, eyebrow, title, accent, after, sub }) {
return (
{num} — {eyebrow}
{title}
{accent && {accent}}
{after}
{sub}
);
}
function Services() {
const items = [
{
tone: 'featured',
ico: ,
title: 'Build New Shopify Store',
desc: "Custom-built Shopify stores designed to convert from day one. No templates — everything tailored to your brand.",
meta: 'Flagship · 4–8 wks',
href: 'shopify-store.html',
},
{
tone: '',
ico: ,
title: 'Figma to Shopify',
desc: 'Pixel-perfect Figma designs converted into clean, performant Shopify themes. Hand-coded, not auto-generated.',
meta: '2–3 wks',
href: 'figma-to-shopify.html',
},
{
tone: 'lime',
ico: ,
title: 'Shopify Audit',
desc: "In-depth UX, performance, and conversion audit. We find what's broken and give you a clear roadmap to fix it.",
meta: '1–2 wks',
href: 'page-audits.html',
},
{
tone: '',
ico: ,
title: 'Platform Migration',
desc: 'Seamless migration from Magento, WooCommerce, BigCommerce, or any platform to Shopify. Zero downtime.',
meta: '3–5 wks',
href: 'migrate.html',
},
{
tone: '',
ico: ,
title: 'B2B & Wholesale',
desc: 'Shopify Plus B2B solutions with custom pricing, bulk ordering, and wholesale portals built for scale.',
meta: '3–4 wks',
href: 'contact.html',
},
{
tone: '',
ico: ,
title: 'Custom App Development',
desc: "Bespoke Shopify apps that extend your store's functionality. Built exactly for your business needs.",
meta: '4–10 wks',
href: 'contact.html',
},
];
return (
);
}
function Cases() {
const cases = [
{
col: 7, label: 'Hero shot · DTC skincare',
tone: 'green',
tag: 'Plix', tags: ['Headless', 'Subscriptions', 'Plus'],
title: 'Headless Shopify rebuild that cut load time by 71%',
kpis: [['+184%', 'AOV'], ['1.2s', 'LCP'], ['+62%', 'Conv. rate']],
},
{
col: 5, label: 'PDP detail · Luggage',
tone: '',
tag: 'Mokobara', tags: ['Custom theme', 'CRO'],
title: 'A luggage PDP built like a configurator',
kpis: [['+47%', 'Add-to-cart'], ['+22%', 'AOV'], ['9 wks', 'Build']],
},
{
col: 5, label: 'Cart drawer · Coffee',
tone: 'lime',
tag: 'Sleepy Owl', tags: ['Migration', 'Subscriptions'],
title: 'Magento → Shopify Plus, with 0 SEO bleed',
kpis: [['+38%', 'Organic'], ['100%', 'Retain'], ['6 wks', 'Migrate']],
},
{
col: 7, label: 'Editorial · Apparel',
tone: '',
tag: 'Snitch', tags: ['Shopify Plus', 'B2B', 'Plus'],
title: 'B2B wholesale storefront for a 100k-SKU apparel brand',
kpis: [['+3.2×', 'B2B GMV'], ['12k', 'Trade accts'], ['Plus', 'Tier']],
},
];
return (
{cases.map((c, i) => (
{c.tag}
{c.tags.map(t => {t})}
{c.title}
{c.kpis.map(([v, l], j) => (
))}
))}
);
}
window.Marquee = Marquee;
window.SectionHead = SectionHead;
window.Services = Services;
window.Cases = Cases;