summaryrefslogtreecommitdiffhomepage
path: root/www/src/components/Hero.astro
diff options
context:
space:
mode:
authorJay V <[email protected]>2025-05-26 17:25:06 -0400
committerJay V <[email protected]>2025-05-26 17:25:12 -0400
commit66b18959ebc7b699a74ce69d3adfb4c4dcaa5fd1 (patch)
tree5ef9340b1c496076dd1e12156fdc35c3f3c35933 /www/src/components/Hero.astro
parentdeacf5991abfb777aae7823a8e7e352fbefdabd0 (diff)
downloadopencode-66b18959ebc7b699a74ce69d3adfb4c4dcaa5fd1.tar.gz
opencode-66b18959ebc7b699a74ce69d3adfb4c4dcaa5fd1.zip
Merging docs and share app
Diffstat (limited to 'www/src/components/Hero.astro')
-rw-r--r--www/src/components/Hero.astro11
1 files changed, 0 insertions, 11 deletions
diff --git a/www/src/components/Hero.astro b/www/src/components/Hero.astro
deleted file mode 100644
index f80f85266..000000000
--- a/www/src/components/Hero.astro
+++ /dev/null
@@ -1,11 +0,0 @@
----
-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>
-}