Setup frontend

This commit is contained in:
2024-10-15 23:51:33 -05:00
parent 5b28c69163
commit dd8f7a7014
12 changed files with 5352 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}', './*.html'],
darkMode: 'media',
mode: 'jit',
theme: {
extend: {
fontFamily: {
inter: ['Inter', 'sans-serif'],
},
},
},
};