Initial commit

This commit is contained in:
dk
2026-01-16 17:44:35 +02:00
commit 9815d65404
12 changed files with 1571 additions and 0 deletions

22
tailwind.config.js Normal file
View File

@@ -0,0 +1,22 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
"./public/index.html"
],
theme: {
extend: {
colors: {
'claude-orange': '#E97441',
'claude-text': '#2D3748',
'claude-gray': '#718096',
'claude-light-gray': '#F7FAFC',
'cloudflare-blue': '#0066CC'
},
fontFamily: {
'sans': ['system-ui', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'sans-serif']
}
},
},
plugins: [],
}