// Nav + Hero const { Icons: NavIcons } = window; const NAV_MENU = [ { label: 'Services', items: [ { t: 'Custom Shopify Store Design', d: 'Complete Shopify store design & development', href: 'shopify-store.html' }, { t: 'Convert Figma to Shopify', d: 'Pixel-perfect Figma to Shopify conversion', href: 'figma-to-shopify.html' }, { t: 'Custom Theme Development', d: 'Hand-coded Liquid themes from scratch', href: 'shopify-theme.html' }, ], }, { label: 'Optimization', items: [ { t: 'Page Audits', d: 'Data-driven redesign that boosts conversions 30%', href: 'page-audits.html' }, { t: 'Cart Drawer', d: 'Gamified cart drawer that incentivizes sales', href: 'cart-drawer.html' }, { t: 'Checkout', d: '2× faster checkout that boosts conversions', href: 'checkout.html' }, ], }, { label: 'Content & Listings', items: [ { t: 'A+ Content', d: 'Premium content that drives conversions', href: 'a-plus-content.html' }, { t: 'Bulk Product Listing', d: 'List hundreds of products with zero errors', href: 'bulk-product-listing.html' }, ], }, { label: 'Migrate', items: [ { t: 'Seamless Migration to Shopify', d: 'Any platform, zero data loss migration', href: 'migrate.html' }, { t: 'Migrate from Salesforce to Shopify', d: 'Commerce Cloud to Shopify, hassle-free', href: 'migrate.html#salesforce' }, { t: 'Migrate from Magento to Shopify', d: 'Adobe Commerce to Shopify migration', href: 'migrate.html#magento' }, { t: 'Migrate from BigCommerce to Shopify', d: 'Full BigCommerce store transfer to Shopify', href: 'migrate.html#bigcommerce' }, { t: 'Migrate from WooCommerce to Shopify', d: 'WordPress to Shopify, seamlessly', href: 'migrate.html#woocommerce' }, { t: 'POS System Migrations to Shopify', d: 'Unified POS migration for retail experiences', href: 'migrate.html#pos' }, ], }, { label: 'Portfolio', href: 'https://portfolio.maximiseteck.com' }, { label: 'About', href: 'about.html' }, ]; function NavItem({ item }) { const [open, setOpen] = React.useState(false); const closeT = React.useRef(); const onEnter = () => { clearTimeout(closeT.current); setOpen(true); }; const onLeave = () => { closeT.current = setTimeout(() => setOpen(false), 120); }; if (!item.items) { return ( {item.label} ); } // size dropdown wider for long menus const wide = item.items.length >= 5; return (
); } function MobileMenu({ open, onClose }) { const [openIdx, setOpenIdx] = React.useState(null); React.useEffect(() => { document.body.classList.toggle('nav-locked', open); return () => document.body.classList.remove('nav-locked'); }, [open]); return (
{NAV_MENU.map((item, i) => { if (!item.items) { return (
{item.label}
); } const sectionOpen = openIdx === i; return (
); })}
Book a Discovery Call
); } function Nav() { const [mobileOpen, setMobileOpen] = React.useState(false); return (
MaximiseTeck Shopify
Studio
Book a Call
setMobileOpen(false)} />
); } function Hero({ variant, headline }) { // Split headline into two parts at the {{accent}} delimiter const m = (headline || '').match(/^(.*?)\{\{(.+?)\}\}(.*)$/); const before = m ? m[1] : headline; const accent = m ? m[2] : ''; const after = m ? m[3] : ''; return (
Trusted by 500+ brands · Shopify Partner

{before} {accent && {accent}} {after}

Custom builds, migrations, B2B & Plus. We design, develop and tune Shopify stores end-to-end for brands that need to ship fast and convert harder.

Book a discovery call See our work
500+
Shopify stores shipped
3×
Avg. conversion lift
48hr
Project turnaround
98%
Client satisfaction
{/* Form variant (default) */}

Start your project

Free consultation — no commitment. We'll reply within 4 hours.

{/* Mock variant */}
// preview-store-001.myshopify.com
Store preview
drops here
); } window.Nav = Nav; window.Hero = Hero;