mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-27 20:17:43 +02:00
- Create complete Presi landing page with Astro + Tailwind - Orange theme (#f97316) matching Presi branding - Use shared-landing-ui components (HeroSection, FeatureSection, FAQSection, CTASection) - Add "How it works" section with 4-step guide - Fix Zitare landing styling with proper Tailwind config - Add CSS custom properties for consistent theming - Add deploy:landing:presi script and update deploy:landing:all - Add dev:presi:landing script 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
38 lines
809 B
JavaScript
38 lines
809 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: {
|
|
// Zitare Purple/Indigo Theme
|
|
primary: {
|
|
DEFAULT: '#8b5cf6',
|
|
hover: '#a78bfa',
|
|
glow: 'rgba(139, 92, 246, 0.3)',
|
|
},
|
|
background: {
|
|
page: '#0f0d1a',
|
|
card: '#1a1625',
|
|
'card-hover': '#252033',
|
|
},
|
|
text: {
|
|
primary: '#f9fafb',
|
|
secondary: '#d1d5db',
|
|
muted: '#6b7280',
|
|
},
|
|
border: {
|
|
DEFAULT: '#2d2640',
|
|
hover: '#3d3555',
|
|
},
|
|
},
|
|
fontFamily: {
|
|
sans: ['Inter', 'system-ui', 'sans-serif'],
|
|
serif: ['Merriweather', 'Georgia', 'serif'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|