Initial commit: Maria Malejka memorial website
Next.js 14 + node:sqlite memorial site with: - Hero section, photo slideshow & gallery - Memory/thoughts editor (admin) - Music player with upload - Video gallery - Docker Compose deployment - Responsive warm earth tone design
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
import type { Config } from 'tailwindcss'
|
||||
|
||||
const config: Config = {
|
||||
content: [
|
||||
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
|
||||
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
|
||||
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
cream: '#FAF7F0',
|
||||
'warm-brown': '#3D2B1F',
|
||||
'warm-brown-light': '#7C6352',
|
||||
'warm-gold': '#C4A04A',
|
||||
'warm-gold-light': '#E2C97E',
|
||||
'warm-border': '#E8DDD0',
|
||||
},
|
||||
fontFamily: {
|
||||
cormorant: ['var(--font-cormorant)', 'Georgia', 'serif'],
|
||||
lora: ['var(--font-lora)', 'Georgia', 'serif'],
|
||||
},
|
||||
animation: {
|
||||
'fade-in': 'fadeIn 1.5s ease-out forwards',
|
||||
'float': 'float 3s ease-in-out infinite',
|
||||
},
|
||||
keyframes: {
|
||||
fadeIn: {
|
||||
'0%': { opacity: '0', transform: 'translateY(20px)' },
|
||||
'100%': { opacity: '1', transform: 'translateY(0)' },
|
||||
},
|
||||
float: {
|
||||
'0%, 100%': { transform: 'translateY(0)' },
|
||||
'50%': { transform: 'translateY(-8px)' },
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
|
||||
export default config
|
||||
Reference in New Issue
Block a user