Initial commit

This commit is contained in:
2026-01-15 12:54:49 +02:00
commit ed08f4aca3
18 changed files with 2204 additions and 0 deletions

24
tailwind.config.js Normal file
View File

@@ -0,0 +1,24 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
'nest-red': '#e53e3e',
'nest-pink': '#e53e3e',
'nest-dark': '#1a1a1a',
'nest-gray': '#6b7280',
'nest-light-gray': '#f3f4f6'
},
fontFamily: {
'sans': ['Inter', 'system-ui', 'sans-serif']
},
backgroundImage: {
'hero-gradient': 'linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%)'
}
},
},
plugins: [],
}