// Portfolio: client store cards — brand logo, result metric, tags, live link. // Replaces the old device-frame layout: reliable (no third-party captures), scannable, // and it shows more stores per screen. Logos are local files; brands without a logo // file fall back to a wordmark tile in brand colours. const NS_PF = window.AnsysDigitalDesignSystem_4543d7; function Portfolio() { const { SectionHeading, Tag, Button } = NS_PF; const [filter, setFilter] = React.useState("All"); const [showAll, setShowAll] = React.useState(false); const secRef = React.useRef(null); React.useEffect(() => { setShowAll(false); }, [filter]); React.useEffect(() => { const el = secRef.current; if (!el) return; requestAnimationFrame(() => el.querySelectorAll(".reveal").forEach((n) => n.classList.add("in"))); }, [filter, showAll]); const cats = ["All", "Fashion", "Beauty", "Jewelry", "Home"]; const projects = [ { id: "pf1", name: "Kishaan", logo: "logo-kishaan.png", url: "https://kishaan.in/", cat: "Home", region: "India", tagline: "Makhana manufacturer & B2B private-label storefront", metric: "+41% conversion", tags: ["Shopify", "CRO"] }, { id: "pf2", name: "KRON Nutrition", logo: "logo-kron.png", url: "https://kronfit.com/", cat: "Fashion", region: "India", tagline: "Science-backed supplements with shoppable video", metric: "0.9s LCP", tags: ["Custom dev", "Performance"] }, { id: "pf3", name: "Waysho", logo: "logo-waysho.avif", url: "https://waysho.com/", cat: "Home", region: "India", tagline: "Everyday fashion & essentials marketplace", metric: "+34% AOV", tags: ["Shopify", "UX"] }, { id: "pf4", name: "Ayurmveda", logo: "logo-ayurmveda.webp", url: "https://ayurmveda.in/", cat: "Beauty", region: "India", tagline: "Ayurvedic wellness & skincare brand", metric: "+29% revenue", tags: ["CRO", "SEO"] }, { id: "pf5", name: "Dubai Aroma", logo: "logo-dubaiaroma.avif", url: "https://dubaiaroma.in/", cat: "Beauty", region: "UAE", tagline: "Luxury perfumes & attars store", metric: "+58% AOV", tags: ["Fragrance", "Plus"] }, { id: "pf6", name: "BloomLeaf", logo: "logo-bloomleaf.webp", url: "https://bloomleaf.co.in/", cat: "Home", region: "India", tagline: "Plants & home decor storefront", metric: "+34% LTV", tags: ["Shopify", "CRO"] }, { id: "pf7", name: "Seafolds", logo: "logo-seafolds.avif", url: "https://seafolds.com/", cat: "Fashion", region: "India", tagline: "Ready-matched jeans & T-shirt combos", metric: "+36% conversion", tags: ["Shopify", "Fashion"] }, { id: "pf8", name: "Sahina Dupatta", logo: "logo-sahina.avif", url: "https://sahinadupatta.com/", cat: "Fashion", region: "India", tagline: "Handcrafted premium dupattas & scarves", metric: "+42% conversion", tags: ["Shopify", "Ethnic wear"] }, { id: "pf9", name: "HindIX", logo: "logo-hindix.avif", url: "https://hindix.in/", cat: "Fashion", region: "India", tagline: "Custom printed & oversized tees, print-on-demand", metric: "+40% repeat rate", tags: ["Shopify", "POD"] }, { id: "pf10", name: "Pikku Store", logo: "logo-pikku.avif", url: "https://pikku.shop/", cat: "Home", region: "USA", tagline: "US multi-category lifestyle store", metric: "+45% AOV", tags: ["Shopify", "Bundle builder"] }, { id: "pf11", name: "Namaste Silver", logo: "logo-namastesilver.webp", url: "https://namastesilver.com/", cat: "Jewelry", region: "Worldwide", tagline: "Handmade 925 sterling silver jewellery", metric: "+38% conversion", tags: ["Shopify", "Multi-currency"] }, ]; const all = projects.filter((p) => filter === "All" || p.cat === filter); const shown = showAll ? all : all.slice(0, 6); return (
{cats.map((c) => )}
{shown.map((p, i) => (
{p.logo ? {p.name} : {p.name}} {p.metric}
{p.cat} · {p.region}

{p.name}

{p.tagline}

{p.tags.map((t) => {t})}
))}
{all.length > 6 && (
)}

Figures shown are from specific client projects and reflect results measured on those stores. Outcomes vary by product, pricing, market and marketing spend, and are not a guarantee of future performance.

); } Object.assign(window, { Portfolio });