Merging docs and share app

This commit is contained in:
Jay V
2025-05-26 17:25:06 -04:00
parent deacf5991a
commit 66b18959eb
42 changed files with 101 additions and 2811 deletions

View File

@@ -0,0 +1,11 @@
---
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>
}