Initial commit

This commit is contained in:
2026-01-14 14:37:01 +02:00
commit 55a74476bc
48 changed files with 2248 additions and 0 deletions

18
tailwind.config.js Normal file
View File

@@ -0,0 +1,18 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
'brand-red': '#e53e3e',
'brand-red-dark': '#c53030',
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
},
},
},
plugins: [],
}