6 |
7 |
8 | {{ appConfig.site.name }}
13 |
14 |
15 | {{ appConfig.docs.shortDescription.replace(/\.$/, '') }}.
17 |
18 |
19 |
--------------------------------------------------------------------------------
/.github/workflows/autofix.yml:
--------------------------------------------------------------------------------
1 | name: autofix.ci
2 | on: { push: {}, pull_request: {} }
3 | permissions: { contents: read }
4 | jobs:
5 | autofix:
6 | runs-on: ubuntu-latest
7 | steps:
8 | - uses: actions/checkout@v6
9 | - run: npm i -fg corepack && corepack enable
10 | - uses: actions/setup-node@v6
11 | with: { node-version: 24, cache: 'pnpm' }
12 | - run: pnpm install
13 | - run: pnpm lint:fix
14 | - run: pnpm automd
15 | - uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27
16 | with: { commit-message: 'chore: apply automated updates' }
17 |
--------------------------------------------------------------------------------
/app/modules/content/icons.ts:
--------------------------------------------------------------------------------
1 | export const CommonIcons = [
2 | {
3 | pattern: 'guide',
4 | icon: 'i-lucide-book-open',
5 | },
6 | {
7 | pattern: 'components',
8 | icon: 'i-lucide-component',
9 | },
10 | {
11 | pattern: 'config',
12 | icon: 'i-lucide-settings',
13 | },
14 | {
15 | pattern: 'configuration',
16 | icon: 'i-lucide-settings',
17 | },
18 | {
19 | pattern: 'examples',
20 | icon: 'i-lucide-code',
21 | },
22 | {
23 | pattern: 'utils',
24 | icon: 'i-lucide-square-function',
25 | },
26 | {
27 | pattern: 'blog',
28 | icon: 'i-lucide-file-text',
29 | },
30 | ]
31 |
--------------------------------------------------------------------------------
/app/public/icon.svg:
--------------------------------------------------------------------------------
1 |
2 |