mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-04-01 23:02:26 +00:00
12 lines
260 B
Plaintext
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>
|
|
}
|