diff options
| author | Jay V <[email protected]> | 2025-09-02 17:30:51 -0400 |
|---|---|---|
| committer | Jay V <[email protected]> | 2025-09-02 17:30:51 -0400 |
| commit | e544cccc70cc717d3780bb3ee8a046d8314cc3f2 (patch) | |
| tree | 6a395cc61f8629185ad1e5a9713c202827d9b5a9 | |
| parent | c141b88087e7d1383883a5642710fbab3d2eec88 (diff) | |
| download | opencode-e544cccc70cc717d3780bb3ee8a046d8314cc3f2.tar.gz opencode-e544cccc70cc717d3780bb3ee8a046d8314cc3f2.zip | |
ignore: zen
| -rw-r--r-- | cloud/app/src/routes/index.tsx | 37 |
1 files changed, 17 insertions, 20 deletions
diff --git a/cloud/app/src/routes/index.tsx b/cloud/app/src/routes/index.tsx index 4f8e671da..4cc64feac 100644 --- a/cloud/app/src/routes/index.tsx +++ b/cloud/app/src/routes/index.tsx @@ -11,7 +11,6 @@ import { createAsync, query, redirect } from "@solidjs/router" import { getActor } from "~/context/auth" import { withActor } from "~/context/auth.withActor" import { Account } from "@opencode/cloud-core/account.js" -import { Show } from "solid-js" function CopyStatus() { return ( @@ -83,25 +82,23 @@ export default function Home() { </div> </section> - <Show when={false}> - <section data-component="zen"> - <a href="/docs/zen">opencode zen</a> - <span data-slot="description"> - , a curated list of models provided by opencode - </span> - <span data-slot="divider"> / </span> - <a - href={ - workspaceId() - ? `/workspace/${workspaceId()}` - : "/auth/authorize" - } - target="_self" - > - Sign in - </a> - </section> - </Show> + <section data-component="zen"> + <a href="/docs/zen">opencode zen</a> + <span data-slot="description"> + , a curated list of models provided by opencode + </span> + <span data-slot="divider"> / </span> + <a + href={ + workspaceId() + ? `/workspace/${workspaceId()}` + : "/auth/authorize" + } + target="_self" + > + Sign in + </a> + </section> <section data-component="features"> <ul data-slot="list"> |
