summaryrefslogtreecommitdiffhomepage
path: root/www/src/pages
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/pages
parentdeacf5991abfb777aae7823a8e7e352fbefdabd0 (diff)
downloadopencode-66b18959ebc7b699a74ce69d3adfb4c4dcaa5fd1.tar.gz
opencode-66b18959ebc7b699a74ce69d3adfb4c4dcaa5fd1.zip
Merging docs and share app
Diffstat (limited to 'www/src/pages')
-rw-r--r--www/src/pages/share/[...id].astro35
1 files changed, 0 insertions, 35 deletions
diff --git a/www/src/pages/share/[...id].astro b/www/src/pages/share/[...id].astro
deleted file mode 100644
index c3bc50d3b..000000000
--- a/www/src/pages/share/[...id].astro
+++ /dev/null
@@ -1,35 +0,0 @@
----
-import config from "virtual:starlight/user-config";
-
-import StarlightPage from '@astrojs/starlight/components/StarlightPage.astro';
-import Share from "../../components/Share.tsx";
-
-export const prerender = false;
-
-// TODO: Replace with API URL from environment
-
-const { id } = Astro.params;
-console.log(Astro.url.pathname);
-//console.log(config);
----
-
-<StarlightPage
- hasSidebar={false}
- frontmatter={{
- title: "Share",
- pageFind: false,
- template: "splash",
- tableOfContents: false,
- }}
->
- <Share id={id} api="https://api.dev.opencode.ai" client:only="solid" />
-</StarlightPage>
-
-<style is:global>
-body > .page > .main-frame .main-pane > main > .content-panel:first-of-type {
- display: none;
-}
-body > .page > .main-frame .main-pane > main > .content-panel + .content-panel {
- border-top: none;
-}
-</style>