Initial commit

This commit is contained in:
2026-01-19 17:58:34 +02:00
commit 04b58427a9
19 changed files with 2211 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': '#e53e3e',
'nest-pink': '#ed64a6',
'nest-dark': '#1a202c',
'nest-gray': '#2d3748',
'nest-light-gray': '#f7fafc'
},
fontFamily: {
'sans': ['Inter', 'system-ui', 'sans-serif']
},
backgroundImage: {
'hero-pattern': "url('https://enterprise.nestjs.com/header-2.50296714.jpg')",
'support-pattern': "url('https://enterprise.nestjs.com/support.cbdb04e7.png')"
}
}
},
plugins: []
}