mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-22 14: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>
14 lines
470 B
CSS
14 lines
470 B
CSS
/* This file is overwritten by the builder service with the org's theme */
|
|
:root {
|
|
--color-primary: #64748b;
|
|
--color-primary-hover: #475569;
|
|
--color-primary-glow: rgba(100, 116, 139, 0.3);
|
|
--color-text-primary: #f1f5f9;
|
|
--color-text-secondary: #cbd5e1;
|
|
--color-text-muted: #64748b;
|
|
--color-background-page: #0f172a;
|
|
--color-background-card: #1e293b;
|
|
--color-background-card-hover: #334155;
|
|
--color-border: #334155;
|
|
--color-border-hover: #475569;
|
|
}
|