Initial commit

This commit is contained in:
2026-01-14 14:15:45 +02:00
commit 909aa9eac2
120 changed files with 2552 additions and 0 deletions

26
tailwind.config.js Normal file
View File

@@ -0,0 +1,26 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
"./public/index.html"
],
theme: {
extend: {
colors: {
'nest-red': '#e0234e',
'nest-red-dark': '#c41e3a',
'nest-dark': '#1a1a1a',
'nest-gray': '#f5f5f5',
'nest-text': '#333333',
'nest-text-light': '#666666'
},
fontFamily: {
'sans': ['Inter', 'system-ui', 'sans-serif']
},
backgroundImage: {
'hero-pattern': "url('https://nestjs.com/img/hero-bg.jpg')"
}
}
},
plugins: []
}