initial commit

This commit is contained in:
2024-04-26 16:31:42 +02:00
commit 41af0a2764
15 changed files with 1429 additions and 0 deletions

26
tailwind.config.js Normal file
View File

@ -0,0 +1,26 @@
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
extend: {
fontFamily: {
Sen: ['Sen'],
Inter: ['Inter'],
},
height: {
'200': '200px',
'300': '300px',
'350': '350px',
'400': '400px',
'500': '500px',
},
Width: {
'200': '200px',
'300': '300px',
'350': '350px',
'400': '400px',
'500': '500px',
},
},
},
plugins: [],
};