update homepage

This commit is contained in:
bagus-arie05
2025-09-08 15:07:49 +07:00
parent 5980946669
commit 003925d57a
8 changed files with 1354 additions and 893 deletions

27
plugins/vuetify.ts Normal file
View File

@@ -0,0 +1,27 @@
import { createVuetify } from 'vuetify'
import * as components from 'vuetify/components'
import * as directives from 'vuetify/directives'
export default defineNuxtPlugin((app) => {
const vuetify = createVuetify({
components,
directives,
theme: {
defaultTheme: 'light',
themes: {
light: {
colors: {
primary: '#FF9800',
secondary: '#FFC107',
accent: '#FF5722',
error: '#F44336',
warning: '#FF9800',
info: '#2196F3',
success: '#4CAF50'
}
}
}
}
})
app.vueApp.use(vuetify)
})