Initial commit

This commit is contained in:
2026-01-15 14:39:55 +02:00
commit 5bc48de890
21 changed files with 2375 additions and 0 deletions

25
tailwind.config.js Normal file
View File

@@ -0,0 +1,25 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
'nest-red': '#e0234e',
'nest-dark': '#1a1a1a',
'nest-gray': '#666666',
'nest-light-gray': '#f5f5f5',
'nest-border': '#e5e5e5'
},
fontFamily: {
'sans': ['Inter', 'system-ui', 'sans-serif']
},
backgroundImage: {
'hero-pattern': "url('https://nestjs.com/header.e5c9eff6.webp')",
'support-pattern': "url('https://nestjs.com/support.1356a495.png')"
}
},
},
plugins: [],
}