mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-23 06:06:42 +02:00
New service that generates static Astro landing pages for organizations
and deploys them to Cloudflare Pages at {slug}.mana.how.
Components:
- Landing Builder Service (NestJS, port 3030) with Astro template
- Admin UI in Manacore web dashboard at /organizations/[id]/landing
- TeamSection + ContactSection for shared-landing-ui
- Two org themes (classic dark, warm light)
- LandingPageConfig types in shared-types
- Docker + CI/CD integration for Mac Mini deployment
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
24 lines
644 B
CSS
24 lines
644 B
CSS
/**
|
|
* Org Classic Theme - Professional Dark
|
|
* Neutral slate tones, clean and serious. Ideal for institutions, associations, businesses.
|
|
*/
|
|
:root {
|
|
/* Primary colors - Slate Blue */
|
|
--color-primary: #64748b;
|
|
--color-primary-hover: #475569;
|
|
--color-primary-glow: rgba(100, 116, 139, 0.3);
|
|
|
|
/* Text colors */
|
|
--color-text-primary: #f1f5f9;
|
|
--color-text-secondary: #cbd5e1;
|
|
--color-text-muted: #64748b;
|
|
|
|
/* Background colors */
|
|
--color-background-page: #0f172a;
|
|
--color-background-card: #1e293b;
|
|
--color-background-card-hover: #334155;
|
|
|
|
/* Border colors */
|
|
--color-border: #334155;
|
|
--color-border-hover: #475569;
|
|
}
|