feat: phase 2

Newfound motivation
This commit is contained in:
2025-02-23 05:12:21 +01:00
parent fdf3679fbe
commit a29bce2227
36 changed files with 1367 additions and 615 deletions

View File

@ -1,13 +1,16 @@
import { createApp } from 'vue';
import { createPinia } from 'pinia';
import { definePreset } from '@primevue/themes';
import Theme from '@primevue/themes/aura';
import PrimeVue from 'primevue/config';
import App from './components/App.vue';
const pinia = createPinia();
const app = createApp(App);
const Preset = definePreset(Theme, {});
app.use(pinia);
app.use(PrimeVue, {
theme: {
preset: Preset,