orbital-ui 0.1.2

Leptos component library and design system for focused, accessible product UIs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod feature_section;
pub mod hero_section;

// Re-export marketing patterns
pub use feature_section::{FeatureSection, FeatureVariant};
#[cfg(feature = "preview")]
pub use feature_section::{
    FeatureSectionPreview, FEATURESECTION_DOC, FEATURESECTION_PREVIEW_REGISTRATION,
    FEATURESECTION_PROPS,
};
pub use hero_section::{HeightUnit, HeroCta, HeroSection};
#[cfg(feature = "preview")]
pub use hero_section::{
    HeroSectionPreview, HEROSECTION_DOC, HEROSECTION_PREVIEW_REGISTRATION, HEROSECTION_PROPS,
};