Add files for christmas theme, theme handler, feedback revamp and cattpuccin theme

This commit is contained in:
Samidy 2025-12-05 18:07:32 +03:00 committed by GitHub
parent c3cea020b3
commit 12d6af83cf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 1655 additions and 127 deletions

View file

@ -18,6 +18,7 @@ import type { Theme } from 'vitepress'
import Components from '@fmhy/components'
import DefaultTheme from 'vitepress/theme'
import { loadProgress } from './composables/nprogress'
import { useThemeHandler } from './themes/themeHandler'
import Layout from './Layout.vue'
import Post from './PostLayout.vue'
@ -34,5 +35,7 @@ export default {
app.component('Post', Post)
app.component('Feedback', Feedback)
loadProgress(router)
// Initialize theme handler
useThemeHandler()
}
} satisfies Theme