Skip to content

Commit a51c8b6

Browse files
committed
refactor(desktop): update home page layout with AsciiLogo
Replace Logo with AsciiLogo, add full-size background, and constrain project list width for improved visual consistency.
1 parent b269ed9 commit a51c8b6

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

packages/desktop/src/pages/home.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { useGlobalSync } from "@/context/global-sync"
22
import { For, Match, Show, Switch } from "solid-js"
33
import { Button } from "@opencode-ai/ui/button"
4-
import { Logo } from "@opencode-ai/ui/logo"
4+
import { AsciiLogo } from "@opencode-ai/ui/logo"
55
import { useLayout } from "@/context/layout"
66
import { useNavigate } from "@solidjs/router"
77
import { base64Encode } from "@opencode-ai/util/encode"
@@ -35,11 +35,11 @@ export default function Home() {
3535
}
3636

3737
return (
38-
<div class="mx-auto mt-55">
39-
<Logo class="w-xl opacity-12" />
38+
<div class="size-full bg-background-base flex flex-col items-center pt-55">
39+
<AsciiLogo scale={1.5} class="opacity-30" />
4040
<Switch>
4141
<Match when={sync.data.project.length > 0}>
42-
<div class="mt-20 w-full flex flex-col gap-4">
42+
<div class="mt-20 w-full max-w-xl flex flex-col gap-4">
4343
<div class="flex gap-2 items-center justify-between pl-3">
4444
<div class="text-14-medium text-text-strong">Recent projects</div>
4545
<Show when={platform.openDirectoryPickerDialog}>

0 commit comments

Comments
 (0)