chore: updated landing styles 09834b02
Steve · 2026-04-09 10:08 4 file(s) · +65 −67
docs/docs/components/Landing.tsx +3 −5
7 7
			style={{
8 8
				position: "relative",
9 9
				width: "100%",
10 -
				background: "#121113 url('/bg.png') center center / cover no-repeat",
10 +
				background: "#121113 url('/bg.webp') center center / cover no-repeat",
11 11
			}}
12 12
		>
13 13
			<div
20 20
					justifyContent: "center",
21 21
					gap: "3rem",
22 22
					padding: "1rem",
23 -
					background: "rgba(0, 0, 0, 0.65)",
24 23
				}}
25 24
			>
26 25
				<div
34 33
					<h1
35 34
						style={{
36 35
							textAlign: "center",
37 -
							fontSize: "48px",
38 -
							fontWeight: 700,
36 +
							fontSize: "92px",
37 +
							fontWeight: 400,
39 38
							fontFamily: '"Commit Mono", monospace, sans-serif',
40 -
							textTransform: "uppercase",
41 39
							color: "#ffffff",
42 40
						}}
43 41
					>
docs/docs/public/bg.png (deleted) +0 −0

Binary file — no preview.

docs/docs/public/bg.webp (added) +0 −0

Binary file — no preview.

docs/vocs.config.ts +62 −62
10 10
      },
11 11
    },
12 12
  },
13 -
  theme: {
13 +
  sidebar: [
14 +
    {
15 +
      text: 'Intro',
16 +
      items: [
17 +
        {
18 +
          text: 'Quickstart',
19 +
          link: '/quickstart',
20 +
        },
21 +
        {
22 +
          text: 'What is Andromeda',
23 +
          link: '/what-is-andromeda',
24 +
        },
25 +
      ],
26 +
    },
27 +
    {
28 +
      text: 'Apps',
29 +
      items: [
30 +
        {
31 +
          text: 'Feeds',
32 +
          link: '/apps/feeds',
33 +
        },
34 +
        {
35 +
          text: 'Jotts',
36 +
          link: '/apps/jotts',
37 +
        },
38 +
        {
39 +
          text: 'Sipp',
40 +
          link: '/apps/sipp',
41 +
        },
42 +
        {
43 +
          text: 'OG',
44 +
          link: '/apps/og',
45 +
        },
46 +
        {
47 +
          text: 'Shrink',
48 +
          link: '/apps/shrink',
49 +
        },
50 +
        {
51 +
          text: 'Parcels',
52 +
          link: '/apps/parcels',
53 +
        },
54 +
        {
55 +
          text: 'Posts',
56 +
          link: '/apps/posts',
57 +
        },
58 +
      ],
59 +
    },
60 +
    {
61 +
      text: 'DIY',
62 +
      items: [
63 +
        {
64 +
          text: 'Stack',
65 +
          link: '/diy/stack',
66 +
        },
67 +
        {
68 +
          text: 'Skills',
69 +
          link: '/diy/skills',
70 +
        },
71 +
      ],
72 +
    },
73 +
  ],
74 +
    theme: {
14 75
    colorScheme: "dark",
15 76
    accentColor: "#ffffff",
16 77
    variables: {
145 206
      },
146 207
    },
147 208
  },
148 -
  sidebar: [
149 -
    {
150 -
      text: 'Intro',
151 -
      items: [
152 -
        {
153 -
          text: 'Quickstart',
154 -
          link: '/quickstart',
155 -
        },
156 -
        {
157 -
          text: 'What is Andromeda',
158 -
          link: '/what-is-andromeda',
159 -
        },
160 -
      ],
161 -
    },
162 -
    {
163 -
      text: 'Apps',
164 -
      items: [
165 -
        {
166 -
          text: 'Feeds',
167 -
          link: '/apps/feeds',
168 -
        },
169 -
        {
170 -
          text: 'Jotts',
171 -
          link: '/apps/jotts',
172 -
        },
173 -
        {
174 -
          text: 'Sipp',
175 -
          link: '/apps/sipp',
176 -
        },
177 -
        {
178 -
          text: 'OG',
179 -
          link: '/apps/og',
180 -
        },
181 -
        {
182 -
          text: 'Shrink',
183 -
          link: '/apps/shrink',
184 -
        },
185 -
        {
186 -
          text: 'Parcels',
187 -
          link: '/apps/parcels',
188 -
        },
189 -
        {
190 -
          text: 'Posts',
191 -
          link: '/apps/posts',
192 -
        },
193 -
      ],
194 -
    },
195 -
    {
196 -
      text: 'DIY',
197 -
      items: [
198 -
        {
199 -
          text: 'Stack',
200 -
          link: '/diy/stack',
201 -
        },
202 -
        {
203 -
          text: 'Skills',
204 -
          link: '/diy/skills',
205 -
        },
206 -
      ],
207 -
    },
208 -
  ],
209 209
})