- App Router mit TypeScript & Tailwind CSS - Landing Page mit Hero, Über uns, Shop-Teaser, Apps-Teaser, Newsletter - /shop mit 6 Platzhalter-Produkten - /apps Übersicht mit Snakkimo, Fittimo, Rezeptimo - Nav mit Apps-Dropdown, Footer - Design System: Cormorant Garamond + Mulish, Markenfarben - lib/shopify.ts als Platzhalter für Storefront API - Hero-Bild aus ZIP übernommen Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
30 lines
657 B
TypeScript
30 lines
657 B
TypeScript
import type { Config } from 'tailwindcss'
|
|
|
|
const config: Config = {
|
|
content: [
|
|
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./components/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./app/**/*.{js,ts,jsx,tsx,mdx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
beige: '#F5F0E8',
|
|
offwhite: '#FAFAF7',
|
|
sage: '#A8B89A',
|
|
terracotta: '#C4896A',
|
|
darkbrown: '#3D2B1F',
|
|
snakkimo: '#7BA7BC',
|
|
fittimo: '#7DAF8A',
|
|
rezeptimo: '#C4896A',
|
|
},
|
|
fontFamily: {
|
|
serif: ['"Cormorant Garamond"', 'serif'],
|
|
sans: ['Mulish', 'sans-serif'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
export default config
|