Skip to content

Commit bf9ef44

Browse files
committed
docs: minor string fixes
1 parent 859b15c commit bf9ef44

10 files changed

Lines changed: 80 additions & 285 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,23 +31,21 @@ jobs:
3131
with:
3232
node-version: "22"
3333
cache: "pnpm"
34-
cache-dependency-path: docs/pnpm-lock.yaml
34+
cache-dependency-path: pnpm-lock.yaml
3535

3636
- name: Setup Pages
3737
uses: actions/configure-pages@v5
3838

3939
- name: Install dependencies
4040
run: pnpm install
41-
working-directory: docs
4241

4342
- name: Static HTML export
4443
run: pnpm run build
45-
working-directory: docs
4644

4745
- name: Upload artifact
4846
uses: actions/upload-pages-artifact@v3
4947
with:
50-
path: docs/.output/public
48+
path: .output/public
5149

5250
deploy:
5351
environment:

app.config.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,26 @@ export default defineAppConfig({
5151

5252
header: {
5353
title: 'Open Web Desktop',
54+
links: [
55+
{
56+
icon: 'i-lucide-package',
57+
label: 'Apps',
58+
to: 'https://github.com/topics/owd-apps',
59+
target: '_blank'
60+
},
61+
{
62+
icon: 'i-lucide-palette',
63+
label: 'Themes',
64+
to: 'https://github.com/topics/owd-themes',
65+
target: '_blank'
66+
},
67+
{
68+
icon: 'i-lucide-boxes',
69+
label: 'Modules',
70+
to: 'https://github.com/topics/owd-modules',
71+
target: '_blank'
72+
}
73+
]
5474
},
5575

5676
seo: {

app/app.css

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ html.dark {
6868
--ui-bg: #0b0c10;
6969
--ui-bg-elevated: #16171d;
7070
--ui-border: rgba(255, 255, 255, 0.06);
71-
--ui-primary: #00dc82;
71+
--ui-primary: #079b9b;
7272
}
7373

7474
.dark body,
@@ -119,15 +119,15 @@ html.dark header {
119119
margin-top: 4rem;
120120
}
121121

122-
[data-slot="features"] > * {
122+
[data-slot="features"]>* {
123123
background: rgba(255, 255, 255, 0.03);
124124
border: 1px solid rgba(255, 255, 255, 0.05);
125125
border-radius: 16px;
126126
padding: 2rem;
127127
transition: all 0.3s ease;
128128
}
129129

130-
.dark [data-slot="features"] > *:hover {
130+
.dark [data-slot="features"]>*:hover {
131131
background: rgba(255, 255, 255, 0.05);
132132
border-color: rgba(0, 220, 130, 0.2);
133133
transform: translateY(-4px);
@@ -190,7 +190,7 @@ html.dark header {
190190
}
191191
}
192192

193-
[data-page="index"] .prose > :last-child {
193+
[data-page="index"] .prose> :last-child {
194194
margin-bottom: 0;
195195
}
196196

@@ -218,4 +218,4 @@ html.dark header {
218218

219219
.docs-footer-line .docs-footer-brand span {
220220
color: var(--ui-primary);
221-
}
221+
}

app/assets/css/tokens.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ html.dark {
4444
--pg-danger-text: #fecdd3;
4545
--pg-danger-bg: rgba(251, 113, 133, 0.12);
4646
--pg-danger-border: rgba(251, 113, 133, 0.25);
47-
}
47+
}
Lines changed: 40 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,42 @@
11
<template>
2-
<UButton
3-
to="/getting-started/installation"
4-
color="primary"
5-
variant="soft"
6-
size="sm"
7-
trailing-icon="i-lucide-arrow-right"
8-
class="hidden sm:inline-flex"
9-
>
10-
Get started
11-
</UButton>
2+
<div class="flex items-center gap-2">
3+
<UButton
4+
to="https://github.com/topics/owd-apps"
5+
target="_blank"
6+
color="neutral"
7+
variant="ghost"
8+
icon="i-lucide-package"
9+
class="hidden lg:inline-flex"
10+
title="Apps"
11+
/>
12+
<UButton
13+
to="https://github.com/topics/owd-themes"
14+
target="_blank"
15+
color="neutral"
16+
variant="ghost"
17+
icon="i-lucide-palette"
18+
class="hidden lg:inline-flex"
19+
title="Themes"
20+
/>
21+
<UButton
22+
to="https://github.com/topics/owd-modules"
23+
target="_blank"
24+
color="neutral"
25+
variant="ghost"
26+
icon="i-lucide-boxes"
27+
class="hidden lg:inline-flex"
28+
title="Modules"
29+
/>
30+
31+
<UButton
32+
to="/getting-started/introduction"
33+
color="primary"
34+
variant="soft"
35+
size="sm"
36+
trailing-icon="i-lucide-arrow-right"
37+
class="hidden sm:inline-flex ml-2"
38+
>
39+
Get started
40+
</UButton>
41+
</div>
1242
</template>

app/components/content/HomeCodeTerminal.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function copy() {
4242
}
4343
4444
.code-terminal:hover {
45-
border-color: rgba(0, 220, 130, 0.4);
45+
border-color: #079b9b;
4646
background: #1e1e2e;
4747
transform: translateY(-2px);
4848
}
@@ -54,7 +54,7 @@ function copy() {
5454
}
5555
5656
.prompt {
57-
color: #00dc82;
57+
color: grey;
5858
user-select: none;
5959
}
6060

0 commit comments

Comments
 (0)