feat(registry): implement responsive UI with glassmorphism and header fix

This commit is contained in:
MivoDev
2026-01-18 15:56:41 +07:00
parent e84ff3224a
commit 9558373ff9
20 changed files with 540 additions and 22590 deletions

View File

@@ -3,6 +3,7 @@ import type { EnhanceAppContext } from 'vitepress'
import Layout from './Layout.vue'
import Icon from './components/Icon.vue'
import 'flag-icons/css/flag-icons.min.css'
import PluginRegistry from './components/PluginRegistry.vue'
import './input.css'
export default {
@@ -10,5 +11,6 @@ export default {
Layout: Layout,
enhanceApp({ app }: EnhanceAppContext) {
app.component('Icon', Icon)
app.component('PluginRegistry', PluginRegistry)
}
}