Files
shopify-ai-backup/opencode/packages/web/src/components/Hero.astro
2026-02-07 20:54:46 +00:00

12 lines
260 B
Plaintext

---
import Default from '@astrojs/starlight/components/Hero.astro';
import Lander from './Lander.astro';
const { slug } = Astro.locals.starlightRoute.entry;
---
{ slug === ""
? <Lander {...Astro.props} />
: <Default {...Astro.props}><slot /></Default>
}