summaryrefslogtreecommitdiffhomepage
path: root/cloud
diff options
context:
space:
mode:
authorFrank <[email protected]>2025-09-03 06:22:44 -0400
committerFrank <[email protected]>2025-09-03 06:22:44 -0400
commit23af974bd3e4dedab5394a2da2af427dca525d19 (patch)
treed014c7358ed8440a47c038d866a695bd50c9b9ab /cloud
parent36ea46ee67ca51b08ed1e139bd7fdc88da523b6f (diff)
downloadopencode-23af974bd3e4dedab5394a2da2af427dca525d19.tar.gz
opencode-23af974bd3e4dedab5394a2da2af427dca525d19.zip
wip: console
Diffstat (limited to 'cloud')
-rw-r--r--cloud/app/src/routes/index.tsx15
1 files changed, 7 insertions, 8 deletions
diff --git a/cloud/app/src/routes/index.tsx b/cloud/app/src/routes/index.tsx
index c1124dd75..f9c0dc976 100644
--- a/cloud/app/src/routes/index.tsx
+++ b/cloud/app/src/routes/index.tsx
@@ -24,6 +24,8 @@ function CopyStatus() {
const isLoggedIn = query(async () => {
"use server"
const actor = await getActor()
+ // TODO
+ console.log(actor)
if (actor.type === "account") {
const workspaces = await withActor(() => Account.workspaces())
return workspaces[0].id
@@ -67,7 +69,9 @@ export default function Home() {
<section data-component="cta">
<div data-slot="left">
- <a target="_self" href="/docs">Get Started</a>
+ <a target="_self" href="/docs">
+ Get Started
+ </a>
</div>
<div data-slot="right">
<button data-copy data-slot="command">
@@ -84,14 +88,9 @@ export default function Home() {
<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="description">, a curated list of models provided by opencode</span>
<span data-slot="divider">&nbsp;/&nbsp;</span>
- <a
- href="/auth"
- target="_self"
- >
+ <a href="/auth" target="_self">
{auth() ? "Dashboard" : "Sign in"}
</a>
</section>