- Add design tokens (colors, spacing, radius, shadows, typography, transitions) - Add global reset, body/link/focus/typography base styles - Add utility classes (container, surface-card, btn variants, field, badge, message, divider) - Replace header ✉ symbol with inline SVG envelope icon - Update favicon to license-plate shaped mark with blue gradient and bold B - Rename brand from BilHälsning to Bilhej in header, footer, and HTML title - Rewrite footer tagline: focus on service, not privacy - Add theme-color meta tag for browser chrome
12 lines
247 B
TypeScript
12 lines
247 B
TypeScript
import { createApp } from 'vue'
|
|
import { createPinia } from 'pinia'
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
import './assets/styles/base.css'
|
|
|
|
const app = createApp(App)
|
|
|
|
app.use(createPinia())
|
|
app.use(router)
|
|
|
|
app.mount('#app')
|