// Hero section — multiple layout variants const Hero = ({ layout = 'editorial' }) => { return (
{/* ambient glow */}
{layout === 'editorial' && } {layout === 'split' && } {layout === 'centered' && }
); }; const HeroEditorial = () => (
SolidAtoms · Engineering studio · est. 2022
◌ 41 PROJECTS · 5 ENGINEERS · ⌖ KARACHI ⇄ REMOTE

We build serious software
for ambitious teams.

SolidAtoms is a small, deliberate studio. We design and engineer marketing sites, web apps, and AI-native products for founders, agencies, and teams who can tell the difference between shipped and finished.

{/* Feature panel */}
); const FeaturePanel = () => { const featured = PORTFOLIO[0]; return (
{/* mock dashboard preview */}
ledgerline.io / dashboard
{[['Revenue','$248,310','+12.4%'],['Active','1,284','+4.1%'],['Churn','2.1%','-0.3%']].map((m,i)=>(
{m[0].toUpperCase()}
{m[1]}
{m[2]}
))}
Featured {featured.tag} {featured.year}

{featured.name}

{featured.summary}

{featured.metric[0].toUpperCase()}
{featured.metric[1]}
STACK
{featured.stack.join(' · ')}
); }; const HeroSplit = () => (
Engineering studio

Software, finished properly.

Web builds, rescues, AI integrations, and the boring infrastructure that holds it all together. Shipped by humans who care.

); const HeroCentered = () => (
New: AI integration practice · Open for Q3

Engineering for the next web.

SolidAtoms is a five-person studio building marketing sites, web apps, and AI-native products for teams that move fast and care about craft.

); window.Hero = Hero;