Add navbar

This commit is contained in:
2023-01-14 15:27:48 +01:00
parent 0d7c5309a2
commit 3a078e0195
11 changed files with 1478 additions and 125 deletions

14
tailwind.config.js Normal file
View File

@ -0,0 +1,14 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [
require('flowbite/plugin')
],
darkMode: "class",
}