summaryrefslogtreecommitdiffhomepage
path: root/cloud/app/src
diff options
context:
space:
mode:
authorDax Raad <[email protected]>2025-09-03 14:57:02 -0400
committerDax Raad <[email protected]>2025-09-03 14:57:02 -0400
commit7119ace9405a53158fbf3382467179cf4174bf4f (patch)
tree774a04119b4bc6c8b15e42826b0351b26406ecbb /cloud/app/src
parent4e24e04aec27cff8478563af83c93839ab20b386 (diff)
downloadopencode-7119ace9405a53158fbf3382467179cf4174bf4f.tar.gz
opencode-7119ace9405a53158fbf3382467179cf4174bf4f.zip
wip: cloud
Diffstat (limited to 'cloud/app/src')
-rw-r--r--cloud/app/src/app.tsx1
-rw-r--r--cloud/app/src/routes/index.tsx12
2 files changed, 7 insertions, 6 deletions
diff --git a/cloud/app/src/app.tsx b/cloud/app/src/app.tsx
index 54bb6f4a3..17385c4a5 100644
--- a/cloud/app/src/app.tsx
+++ b/cloud/app/src/app.tsx
@@ -8,6 +8,7 @@ import "./app.css";
export default function App() {
return (
<Router
+ explicitLinks={true}
root={props => (
<MetaProvider>
<Title>opencode</Title>
diff --git a/cloud/app/src/routes/index.tsx b/cloud/app/src/routes/index.tsx
index fd6bc23fa..f69ac8462 100644
--- a/cloud/app/src/routes/index.tsx
+++ b/cloud/app/src/routes/index.tsx
@@ -64,7 +64,7 @@ export default function Home() {
<section data-component="cta">
<div data-slot="left">
- <a target="_self" href="/docs">
+ <a href="/docs">
Get Started
</a>
</div>
@@ -82,7 +82,7 @@ export default function Home() {
</section>
<section data-component="zen">
- <a target="_self" href="/docs/zen">
+ <a href="/docs/zen">
opencode zen
</a>
<span data-slot="description">, a curated list of models provided by opencode</span>
@@ -94,7 +94,7 @@ export default function Home() {
</A>
</Match>
<Match when={true}>
- <a target="_self" href="/auth/authorize">Sign in</a>
+ <a href="/auth/authorize">Sign in</a>
</Match>
</Switch>
</section>
@@ -166,7 +166,7 @@ export default function Home() {
<div data-slot="left">
<figure>
<figcaption>opencode TUI with the tokyonight theme</figcaption>
- <a target="_self" href="/docs/cli">
+ <a href="/docs/cli">
<img src={IMG_SPLASH} alt="opencode TUI with tokyonight theme" />
</a>
</figure>
@@ -175,7 +175,7 @@ export default function Home() {
<div data-slot="row1">
<figure>
<figcaption>opencode in VS Code</figcaption>
- <a target="_self" href="/docs/ide">
+ <a href="/docs/ide">
<img src={IMG_VSCODE} alt="opencode in VS Code" />
</a>
</figure>
@@ -183,7 +183,7 @@ export default function Home() {
<div data-slot="row2">
<figure>
<figcaption>opencode in GitHub</figcaption>
- <a target="_self" href="/docs/github">
+ <a href="/docs/github">
<img src={IMG_GITHUB} alt="opencode in GitHub" />
</a>
</figure>