forked from emre/www_projectmycelium_com
- Replaced multiple hero and background images with new optimized versions - Removed unused image assets from public/images directory - Updated typography styles: - Removed italic styling from various text components - Made eyebrow text uppercase - Adjusted H1 font size from 6xl to 5xl on mobile - Redesigned HomeAurora component with new layout and background - Added Mulish as primary font family in Tailwind config - Updated text formatting and spacing
36 lines
979 B
JavaScript
36 lines
979 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Mulish', 'system-ui', 'Avenir', 'Helvetica', 'Arial', 'sans-serif'],
|
|
},
|
|
keyframes: {
|
|
'glitch-1': {
|
|
'0%': { transform: 'none' },
|
|
'25%': { transform: 'skew(-0.5deg, -0.5deg)' },
|
|
'50%': { transform: 'none' },
|
|
'75%': { transform: 'skew(0.5deg, 0.5deg)' },
|
|
'100%': { transform: 'none' },
|
|
},
|
|
'glitch-2': {
|
|
'0%': { transform: 'none' },
|
|
'25%': { transform: 'skew(-0.5deg, -0.5deg)' },
|
|
'50%': { transform: 'none' },
|
|
'75%': { transform: 'skew(0.5deg, 0.5deg)' },
|
|
'100%': { transform: 'none' },
|
|
},
|
|
},
|
|
animation: {
|
|
'glitch-1': 'glitch-1 1s infinite',
|
|
'glitch-2': 'glitch-2 1s infinite',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|