/* Homepage — hero, manifesto, work grid, upcoming, services, closing */ function Hero() { return (
{/* Main headline */}
We craft  dreams
into  reality.
{/* Sub row */}
↳ 001 — What we do

Code My Brains Out is a small, obsessive software studio based in New Delhi. We ship mobile and web products that are as considered as they are fun to use. Multiple apps live in the Play Store, with web work on the way.

Currently
Shipping new immersive experiences.
See the work About the studio
); } function StatBand() { const stats = [ { n: '04', l: 'Apps shipped' }, { n: '9M+', l: 'Downloads' }, { n: '12', l: 'Years independent' }, { n: '∞', l: 'Cups of chai' } ]; return (
{stats.map((s, i) => (
{s.n}
{s.l}
))}
); } function WorkGrid() { const projects = window.PROJECTS; return (
§ 002 Selected Work · 2014 – 2026

Multiple apps,
one obsession.

A utility for artists. A typographic playground. A quiet reading app. A face-detecting moustache generator. We build what we'd use.

{projects.map((p, i) => (
№ {p.num} {p.tag} · {p.year}
{p.icon ? ( {`${p.name} ) : ( )}
{p.name}

{p.tagline}

{p.category}
))}
); } function Manifesto() { const points = [ { k: 'Craft', v: 'We obsess over kerning, easing curves and the exact shade of off-white.' }, { k: 'Utility', v: 'Every app does one thing well, without surveillance or dark patterns.' }, { k: 'Independence', v: 'No VC, no ads, no pivots. We ship what we believe in.' }, { k: 'Humor', v: 'Software should occasionally make you laugh. See: Moustachinator.' } ]; return (
§ 003 Manifesto

We build small
software with big opinions.

{points.map((p, i) => (
0{i+1}

{p.k}

{p.v}

))}
); } function Upcoming() { const items = window.UPCOMING; return (
§ 004 On the workbench

Always expanding

{items.map((u, i) => (
№ 0{i+5} {u.name} {u.category} {u.status}
))}
); } function Services() { const services = [ { n: 'A', title: 'Mobile apps', body: 'Android-first products, built with obsessive attention to UX, motion and typography.' }, { n: 'B', title: 'Web products', body: 'Browser-native tools with the same craft we bring to our mobile work. Our next chapter.' }, { n: 'C', title: 'Brand & type', body: 'Logos, type systems, and the visual vocabulary that makes our products feel like ours.' } ]; return (
§ 005 What we make

What we
build.

{services.map((s, i) => (
{s.n}.

{s.title}

{s.body}

))}
); } function Closing() { return (
§ 006 — Say hello

Just want to say hi ?
We'd love that.

hello@codemybrainsout.com Meet the studio
); } function HomeApp() { const marqueeItems = [ 'Code My Brains Out', 'Independent Software Studio', 'Est. MMXIV', 'Mobile · Web · Design', 'New Delhi, India', 'Four Apps · More Coming' ]; return (