// Shop — browsable catalogue grid with filters + sort const SHOP_PRODUCTS = [ { name:'Die-Cut Stickers', from:'$0.39', price:0.39, img:'assets/laptop-sticker.jpeg', page:'die-cut', type:'Stickers', tag:'Most popular', use:['Outdoor & durable','Branding'], desc:'Any shape, cut to your artwork. 7-year outdoor vinyl.' }, { name:'Holographic Stickers',from:'$0.89', price:0.89, img:'assets/holo-rainbow.jpeg', page:'holo', type:'Stickers', tag:'Eye-catching', use:['Events & merch','Branding'], desc:'Rainbow foil finish that shifts colour in the light.' }, { name:'Glitter Stickers', from:'$0.99', price:0.99, img:'assets/holo-gold.jpeg', page:'glitter', type:'Stickers', tag:'Sparkle', use:['Events & merch'], desc:'Shimmering glitter finish, die-cut to any shape.' }, { name:'Clear Vinyl Stickers',from:'$0.59', price:0.59, img:'assets/sticker-collection.jpeg',page:'clear', type:'Stickers', tag:'No-label look', use:['Packaging & labels'], desc:'Transparent film for a seamless, no-label look.' }, { name:'Sticker Sheets', from:'$2.20', price:2.20, img:'assets/sticker-sheets.jpeg', page:'sheets', type:'Sheets', tag:'Clean + easy', use:['Packaging & labels','Events & merch'], desc:'Multiple designs on one peel-off sheet.' }, { name:'Kiss-Cut Sheets', from:'$2.50', price:2.50, img:'assets/sticker-stack.jpeg', page:'kiss-cut', type:'Sheets', tag:'Peel & share', use:['Events & merch'], desc:'Easy-peel stickers on a printed backing card.' }, { name:'Bulk Stickers', from:'$0.09', price:0.09, img:'assets/sticker-stack.jpeg', page:'bulk', type:'Stickers', tag:'Best value', use:['Bulk & wholesale','Branding'], desc:'Wholesale pricing from 500 to 10,000+.' }, { name:'Wall Murals', from:'$149', price:149, img:'assets/bedroom-mural.jpeg', page:'mural', type:'Murals', tag:'Made to measure',use:['Home & office'], desc:'Custom printed wallpaper, made to measure.' }, { name:'Sample Pack', from:'$1', price:1, img:'assets/sticker-collection.jpeg',page:'sample', type:'Samples', tag:'Try first', use:[], desc:'13 premium materials & finishes for just $1.' }, ]; const Shop = ({ go }) => { const m = useIsMobile(); useSEO({ title: 'Shop Custom Stickers Australia — Die-Cut, Holographic, Glitter & More', description: 'Browse King Kong Stickers — custom die-cut, holographic, glitter, clear vinyl, sticker sheets, bulk & wall murals. Printed in Sydney, free proof in 2 hrs. From $0.09 each.', }); const [type, setType] = React.useState('All'); const [useCase, setUseCase] = React.useState('All'); const [sort, setSort] = React.useState('popular'); const types = ['All','Stickers','Sheets','Murals','Samples']; const useCases = ['All','Outdoor & durable','Packaging & labels','Events & merch','Bulk & wholesale','Home & office','Branding']; let list = SHOP_PRODUCTS.filter(p => (type === 'All' || p.type === type) && (useCase === 'All' || p.use.includes(useCase)) ); if (sort === 'low') list = [...list].sort((a,b)=>a.price-b.price); if (sort === 'high') list = [...list].sort((a,b)=>b.price-a.price); return (
// SHOP THE JUNGLE

Shop custom
stickers

Every sticker printed in Sydney on premium vinyl. Free digital proof in 2 hours, dispatch in 4 business days. From $0.09 each.

{/* Filter bar */}
{types.map(t=>( ))}
{/* Grid */}
{list.length} product{list.length!==1?'s':''}{type!=='All'?` in ${type}`:''}
{list.length === 0 ? (
No products match those filters —
) : (
{list.map(c=>( ))}
)}
); }; window.Shop = Shop;