mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-01 15:03:57 +08:00
- Fix incorrect package names (@ccw/cli, @anthropic/claude-code-workflow) to claude-code-workflow - Add workflow examples page with 8 practical artifact samples - Optimize sidebar navigation with emoji icons and second-level grouping - Add usage examples to commands and skills documentation - Update qa/issues.md with current status - Sync Chinese documentation changes
28 lines
1.0 KiB
TypeScript
28 lines
1.0 KiB
TypeScript
import DefaultTheme from 'vitepress/theme'
|
|
import ThemeSwitcher from './components/ThemeSwitcher.vue'
|
|
import DocSearch from './components/DocSearch.vue'
|
|
import DarkModeToggle from './components/DarkModeToggle.vue'
|
|
import CopyCodeButton from './components/CopyCodeButton.vue'
|
|
import Breadcrumb from './components/Breadcrumb.vue'
|
|
import PageToc from './components/PageToc.vue'
|
|
import ProfessionalHome from './components/ProfessionalHome.vue'
|
|
import Layout from './layouts/Layout.vue'
|
|
import './styles/variables.css'
|
|
import './styles/custom.css'
|
|
import './styles/mobile.css'
|
|
|
|
export default {
|
|
extends: DefaultTheme,
|
|
Layout,
|
|
enhanceApp({ app, router, siteData }) {
|
|
// Register global components
|
|
app.component('ThemeSwitcher', ThemeSwitcher)
|
|
app.component('DocSearch', DocSearch)
|
|
app.component('DarkModeToggle', DarkModeToggle)
|
|
app.component('CopyCodeButton', CopyCodeButton)
|
|
app.component('Breadcrumb', Breadcrumb)
|
|
app.component('PageToc', PageToc)
|
|
app.component('ProfessionalHome', ProfessionalHome)
|
|
}
|
|
}
|