Initial commit

This commit is contained in:
Martin Berg Alstad
2022-12-04 17:51:05 +01:00
commit 5e8aefe665
23 changed files with 2458 additions and 0 deletions

12
tailwind.config.js Normal file
View File

@ -0,0 +1,12 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./index.html',
'./src/**/*.{js,ts,jsx,tsx,css,md,mdx,html,json,scss}',
],
darkMode: 'class',
theme: {
extend: {},
},
plugins: [],
};