Initial commit: restructure project with Docker Compose setup

This commit is contained in:
Admin
2026-05-26 20:16:01 +05:00
commit 47b15787f3
48 changed files with 6074 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
cream: '#FAF8F5',
warmBrown: '#3D3530',
greige: '#E8E4DE',
greigeDark: '#D5CFC8',
taupe: '#8C7E6B',
taupeDark: '#6B5F4F',
mutedBrown: '#9A9088',
softBrown: '#6B6560',
powder: '#E8E0EC',
lavender: '#D5CFE0',
},
fontFamily: {
serif: ['Cormorant Garamond', 'serif'],
sans: ['Manrope', 'sans-serif'],
},
},
},
plugins: [],
}