first commit

This commit is contained in:
Fredrik Burmester
2024-07-31 23:19:47 +02:00
commit 98880e05ec
119 changed files with 7305 additions and 0 deletions

10
tailwind.config.js Normal file
View File

@@ -0,0 +1,10 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: ["./app/**/*.{js,jsx,ts,tsx}", "./components/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {},
},
plugins: [],
};