mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-18 20:41:23 +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>
20 lines
550 B
TypeScript
20 lines
550 B
TypeScript
/**
|
|
* @manacore/shared-landing-ui
|
|
*
|
|
* Shared Astro components for landing pages across the Manacore monorepo.
|
|
*
|
|
* Usage:
|
|
* Import components directly from their paths:
|
|
*
|
|
* ```astro
|
|
* ---
|
|
* import Button from '@manacore/shared-landing-ui/atoms/Button.astro';
|
|
* import HeroSection from '@manacore/shared-landing-ui/sections/HeroSection.astro';
|
|
* ---
|
|
* ```
|
|
*
|
|
* Components require CSS custom properties to be defined in your project.
|
|
* See utils/index.ts for the required variables and example themes.
|
|
*/
|
|
|
|
export * from './utils/index';
|