Added router, added home and 404 page, added icons as svg file, added header and footer component, added tailwind

This commit is contained in:
2025-01-28 15:50:35 +01:00
parent a8acff817b
commit 8994ec306a
27 changed files with 2877 additions and 108 deletions

11
tailwind.config.cjs Normal file
View File

@@ -0,0 +1,11 @@
module.exports = {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: 'media', // or 'media' or 'class'
theme: {
extend: {},
},
variants: {
extend: {},
},
plugins: [],
}