Skip to content

Commit c4e1a63

Browse files
committed
chore: wip
1 parent 4a1d104 commit c4e1a63

File tree

12 files changed

+7195
-75
lines changed

12 files changed

+7195
-75
lines changed

docs/.vitepress/config.ts

Lines changed: 29 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,35 @@ const sidebar = [
6060
{ text: 'Config', link: '/config' },
6161
],
6262
},
63-
{ text: 'Showcase', link: '/Showcase' },
63+
{
64+
text: 'Features',
65+
items: [
66+
{ text: 'Watch Mode', link: '/features/watch-mode' },
67+
{ text: 'Compile Class', link: '/features/compile-class' },
68+
{ text: 'Shortcuts', link: '/features/shortcuts' },
69+
{ text: 'CLI Commands', link: '/features/cli' },
70+
{ text: 'TypeScript Support', link: '/features/typescript' },
71+
],
72+
},
73+
{
74+
text: 'Advanced',
75+
items: [
76+
{ text: 'Custom Rules', link: '/advanced/custom-rules' },
77+
{ text: 'Presets', link: '/advanced/presets' },
78+
{ text: 'Theme Customization', link: '/advanced/theme-customization' },
79+
{ text: 'Framework Integration', link: '/advanced/frameworks' },
80+
],
81+
},
82+
{ text: 'API Reference', link: '/api-reference' },
83+
{ text: 'Showcase', link: '/showcase' },
6484
]
65-
const description = 'A TypeScript Starter Kit. For a better Development Experience.'
66-
const title = 'ts-starter | A TypeScript Starter Kit. For a better Development Experience.'
85+
const description = 'Blazingly fast utility-first CSS framework built with Bun. Generate only the CSS you need with Tailwind-compatible syntax.'
86+
const title = 'Headwind | Blazingly Fast Utility-First CSS Built with Bun'
6787

6888
export default withPwa(
6989
defineConfig({
7090
lang: 'en-US',
71-
title: 'ts-starter',
91+
title: 'Headwind',
7292
description,
7393
metaChunk: true,
7494
cleanUrls: true,
@@ -83,17 +103,17 @@ export default withPwa(
83103
['meta', { name: 'author', content: 'Stacks.js, Inc.' }],
84104
['meta', {
85105
name: 'tags',
86-
content: 'ts-starter, stacksjs, reverse proxy, modern, lightweight, zero-config, local development',
106+
content: 'headwind, css framework, utility-first, tailwind, bun, typescript, fast, lightweight',
87107
}],
88108

89109
['meta', { property: 'og:type', content: 'website' }],
90110
['meta', { property: 'og:locale', content: 'en' }],
91111
['meta', { property: 'og:title', content: title }],
92112
['meta', { property: 'og:description', content: description }],
93113

94-
['meta', { property: 'og:site_name', content: 'ts-starter' }],
114+
['meta', { property: 'og:site_name', content: 'Headwind' }],
95115
['meta', { property: 'og:image', content: './images/og-image.jpg' }],
96-
['meta', { property: 'og:url', content: 'https://reverse-proxy.sh/' }],
116+
['meta', { property: 'og:url', content: 'https://headwind.stacksjs.org/' }],
97117
// ['script', { 'src': 'https://cdn.usefathom.com/script.js', 'data-site': '', 'data-spa': 'auto', 'defer': '' }],
98118
...analyticsHead,
99119
],
@@ -111,7 +131,7 @@ export default withPwa(
111131
sidebar,
112132

113133
editLink: {
114-
pattern: 'https://github.com/stacksjs/stacks/edit/main/docs/docs/:path',
134+
pattern: 'https://github.com/stacksjs/headwind/edit/main/docs/:path',
115135
text: 'Edit this page on GitHub',
116136
},
117137

@@ -123,7 +143,7 @@ export default withPwa(
123143
socialLinks: [
124144
{ icon: 'twitter', link: 'https://twitter.com/stacksjs' },
125145
{ icon: 'bluesky', link: 'https://bsky.app/profile/chrisbreuer.dev' },
126-
{ icon: 'github', link: 'https://github.com/stacksjs/ts-starter' },
146+
{ icon: 'github', link: 'https://github.com/stacksjs/headwind' },
127147
{ icon: 'discord', link: 'https://discord.gg/stacksjs' },
128148
],
129149

0 commit comments

Comments
 (0)