mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-18 03:09:40 +02:00
- Create @manacore/shared-landing-ui package with reusable components (FeatureSection, StepsSection, FAQSection, CTASection, Card atoms) - Add complete landing page for manadeck app - Refactor märchenzauber landing to use shared components (remove local CTA, FAQ, Features, HowItWorks sections) - Add German localization for manacore and memoro landing pages - Update workspace configuration and package dependencies 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
39 lines
901 B
JavaScript
39 lines
901 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
'./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}',
|
|
'../../packages/shared-landing-ui/src/**/*.{astro,html,js,jsx,ts,tsx}'
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
// ManaDeck Purple Theme
|
|
primary: {
|
|
DEFAULT: '#7C3AED',
|
|
hover: '#8B5CF6',
|
|
glow: 'rgba(124, 58, 237, 0.3)'
|
|
},
|
|
background: {
|
|
page: '#0f0a1a',
|
|
card: '#1a1625',
|
|
'card-hover': '#2d2640'
|
|
},
|
|
text: {
|
|
primary: '#f9fafb',
|
|
secondary: '#d1d5db',
|
|
muted: '#6b7280'
|
|
},
|
|
border: {
|
|
DEFAULT: '#3d3555',
|
|
hover: '#4d4570'
|
|
}
|
|
},
|
|
fontFamily: {
|
|
sans: ['Inter', 'system-ui', 'sans-serif']
|
|
}
|
|
}
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/typography')
|
|
]
|
|
};
|