first commit

Made-with: Cursor
This commit is contained in:
Dr Jones
2026-04-25 06:56:23 +00:00
commit 697185c0a1
40 changed files with 10480 additions and 0 deletions

23
tailwind.config.js Normal file
View File

@@ -0,0 +1,23 @@
import typography from '@tailwindcss/typography'
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
display: ['"Cormorant Garamond"', 'ui-serif', 'Georgia', 'serif'],
sans: ['"DM Sans"', 'ui-sans-serif', 'system-ui', 'sans-serif'],
},
colors: {
'villa-ink': '#0f1729',
'villa-mist': '#e8f0f7',
'villa-sage': '#6b8f71',
'villa-gold': '#c9a227',
'villa-sky': '#7eb8da',
'villa-pine': '#1e3d32',
},
},
},
plugins: [typography],
}