Theme Handler (By Land), Christmas & Catppuccin Theme And Feedback Window Revamp (#4386)

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

* Add files via upload

* update image on home page

* add tree logo for faster loading

* change link to raw github
This commit is contained in:
Samidy 2025-12-05 19:32:54 +03:00 committed by GitHub
parent d0b9c2079b
commit d4d4ad0d85
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
20 changed files with 1657 additions and 129 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