lion-make 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. package/dist/components/footer/Disclosure.d.ts +3 -2
  2. package/dist/components/footer/DisclosureToggleOpen.d.ts +13 -0
  3. package/dist/components/footer/LegalLinks.d.ts +16 -0
  4. package/dist/components/footer/LinksAndSocial.d.ts +25 -0
  5. package/dist/components/header/HeaderCTA.d.ts +9 -0
  6. package/dist/components/header/HeaderLogo.d.ts +10 -0
  7. package/dist/components/header/HeaderProduct.d.ts +10 -0
  8. package/dist/components/header/HeaderSectionNavigation.d.ts +12 -0
  9. package/dist/components/header/HeaderSectionTitle.d.ts +8 -0
  10. package/dist/components/header/HeaderUnderwriter.d.ts +9 -0
  11. package/dist/components/header/TopLevelNavigation.d.ts +13 -0
  12. package/dist/components/hero/CTAHeroBlock.d.ts +24 -0
  13. package/dist/components/hero/HeroBlock.d.ts +18 -0
  14. package/dist/components/hero/MultiHero.d.ts +25 -0
  15. package/dist/components/hero/NotAvailableHeroBlock.d.ts +22 -0
  16. package/dist/index.d.ts +28 -0
  17. package/dist/lion-make.js +991 -633
  18. package/dist/lion-make.umd.cjs +10 -10
  19. package/guidelines/Guidelines.md +46 -50
  20. package/guidelines/composition/constraints.md +40 -8
  21. package/guidelines/composition/zones.md +49 -11
  22. package/guidelines/content-types/footer/anklet.md +62 -0
  23. package/guidelines/content-types/footer/compliance.md +49 -0
  24. package/guidelines/content-types/footer/disclaimers.md +48 -0
  25. package/guidelines/content-types/footer/disclosure-toggle-open.md +51 -0
  26. package/guidelines/content-types/footer/disclosures.md +50 -0
  27. package/guidelines/content-types/footer/legal-links.md +59 -0
  28. package/guidelines/content-types/footer/links-and-social.md +94 -0
  29. package/guidelines/content-types/footer/overview.md +73 -16
  30. package/guidelines/content-types/general/accordion-block.md +42 -0
  31. package/guidelines/content-types/general/all-blogs-post-block.md +52 -0
  32. package/guidelines/content-types/general/background-color-block.md +42 -0
  33. package/guidelines/content-types/general/basic-content-block.md +43 -0
  34. package/guidelines/content-types/general/body-text-copy-block.md +38 -0
  35. package/guidelines/content-types/general/content-image-block.md +37 -0
  36. package/guidelines/content-types/general/cross-sell-card-block.md +45 -0
  37. package/guidelines/content-types/general/decorative-list-block.md +40 -0
  38. package/guidelines/content-types/general/email-callout-block.md +38 -0
  39. package/guidelines/content-types/general/embedded-video-block.md +36 -0
  40. package/guidelines/content-types/general/full-size-image-with-highlight-box.md +52 -0
  41. package/guidelines/content-types/general/horizontal-rule.md +35 -0
  42. package/guidelines/content-types/general/hot-jobs-block.md +52 -0
  43. package/guidelines/content-types/general/inline-message.md +36 -0
  44. package/guidelines/content-types/general/last-chance-block.md +40 -0
  45. package/guidelines/content-types/general/multi-step-lead-form.md +60 -0
  46. package/guidelines/content-types/general/multi-testimonial.md +49 -0
  47. package/guidelines/content-types/general/opt-in.md +42 -0
  48. package/guidelines/content-types/general/overview.md +134 -24
  49. package/guidelines/content-types/general/product-block.md +43 -0
  50. package/guidelines/content-types/general/pull-quote.md +36 -0
  51. package/guidelines/content-types/general/recent-blog-posts-block.md +48 -0
  52. package/guidelines/content-types/general/resource-spotlight.md +44 -0
  53. package/guidelines/content-types/general/rtb-descriptive.md +53 -0
  54. package/guidelines/content-types/general/rtb-dynamic.md +55 -0
  55. package/guidelines/content-types/general/rtb-highlight.md +50 -0
  56. package/guidelines/content-types/general/side-menu-explorer.md +62 -0
  57. package/guidelines/content-types/general/simple-cta-block.md +44 -0
  58. package/guidelines/content-types/general/spacing-block.md +40 -0
  59. package/guidelines/content-types/general/speed-bump.md +45 -0
  60. package/guidelines/content-types/general/table-block.md +55 -0
  61. package/guidelines/content-types/general/wahfu.md +66 -0
  62. package/guidelines/content-types/header/header-cta.md +41 -0
  63. package/guidelines/content-types/header/header-logo.md +45 -0
  64. package/guidelines/content-types/header/header-product.md +45 -0
  65. package/guidelines/content-types/header/header-section-navigation.md +55 -0
  66. package/guidelines/content-types/header/header-section-title.md +43 -0
  67. package/guidelines/content-types/header/header-underwriter.md +46 -0
  68. package/guidelines/content-types/header/overview.md +61 -15
  69. package/guidelines/content-types/header/top-level-navigation.md +70 -0
  70. package/guidelines/content-types/hero/cta-hero-block.md +70 -0
  71. package/guidelines/content-types/hero/hero-block.md +56 -0
  72. package/guidelines/content-types/hero/multi-hero.md +78 -0
  73. package/guidelines/content-types/hero/not-available-hero-block.md +64 -0
  74. package/guidelines/content-types/hero/overview.md +53 -18
  75. package/guidelines/content-types/overview.md +86 -29
  76. package/guidelines/discovery.md +158 -0
  77. package/guidelines/setup.md +90 -16
  78. package/package.json +1 -1
@@ -8,52 +8,109 @@ Content types are predefined design patterns. Each content type belongs to exact
8
8
  2. **What is the purpose of this content?** → determines the specific type within the category.
9
9
 
10
10
  ```
11
- Is this for the top of every page (logo, nav)?
12
- → Header zone → [header content types](./header/overview.md)
11
+ Is this for the top of every page (logo, nav, CTAs)?
12
+ → Header zone → [header/overview.md](./header/overview.md)
13
13
 
14
- Is this the primary visual/headline area?
15
- → Hero zone → [hero content types](./hero/overview.md)
14
+ Is this the primary visual/headline area of the page?
15
+ → Hero zone → [hero/overview.md](./hero/overview.md)
16
16
 
17
- Is this informational, promotional, or a form in the body of the page?
18
- → General zone → [general content types](./general/overview.md)
17
+ Is this informational, promotional, interactive, or a form in the body of the page?
18
+ → General zone → [general/overview.md](./general/overview.md)
19
19
 
20
- Is this legal, compliance, or disclosure content?
21
- Footer zone → [footer content types](./footer/overview.md)
20
+ Is this a quick-links bar above the footer?
21
+ Anklet zone → Anklet component
22
+
23
+ Is this legal, compliance, nav, or disclosure content in the bottom of the page?
24
+ → Footer zone → [footer/overview.md](./footer/overview.md)
22
25
  ```
23
26
 
27
+ ---
28
+
24
29
  ## Content Type Catalog by Zone
25
30
 
26
- ### Header Zone (header section only)
31
+ ### Header Zone
27
32
 
28
- | Content Type | Component | Description |
29
- |---|---|---|
30
- | Corporate Universal Header | `CorporateUniversalHeader` | Blue bar with state selector and logo |
31
- | Global Header Bar | `GlobalHeaderBar` | White bar with logo, underwriter info, CTAs |
33
+ 7 content types placed inside structural bars (`CorporateUniversalHeader`, `GlobalHeaderBar`).
34
+
35
+ | Content Type | Component | Typical bar | Required |
36
+ |---|---|---|---|
37
+ | Call to Action | `HeaderCTA` | GlobalHeaderBar | No |
38
+ | Logo | `HeaderLogo` | CorporateUniversalHeader or GlobalHeaderBar | Yes — one per page |
39
+ | Product | `HeaderProduct` | GlobalHeaderBar | No — product DLPs only |
40
+ | Section Navigation | `HeaderSectionNavigation` | Below GlobalHeaderBar | No — section hubs only |
41
+ | Section Title | `HeaderSectionTitle` | GlobalHeaderBar | No |
42
+ | Top Level Navigation | `TopLevelNavigation` | GlobalHeaderBar | Yes — one per page |
43
+ | Underwriter | `HeaderUnderwriter` | CorporateUniversalHeader | Varies — required by compliance on product pages |
44
+
45
+ → Full detail: [header/overview.md](./header/overview.md)
32
46
 
33
- ### Hero Zone (hero section only)
47
+ ---
34
48
 
35
- | Content Type | Component | Variants |
49
+ ### Hero Zone
50
+
51
+ 4 content types — one per page. Choose based on page goal.
52
+
53
+ | Content Type | Component | When to use |
36
54
  |---|---|---|
37
- | Hero | `Hero` | `full-bleed`, `split`, `minimal` |
55
+ | CTA Hero Block | `CTAHeroBlock` | Conversion goal (product DLPs, campaigns) |
56
+ | Hero Block | `HeroBlock` | Informational (section hubs, About, resources) |
57
+ | Multi Hero | `MultiHero` | Multiple products/messages (home, category hubs) |
58
+ | Not Available Hero Block | `NotAvailableHeroBlock` | Product unavailable in user's state |
59
+
60
+ → Full detail + decision tree: [hero/overview.md](./hero/overview.md)
61
+
62
+ ---
38
63
 
39
64
  ### General Zone (Primary Column, Sideburn, Outro)
40
65
 
41
- | Content Type | Component | Allowed zones |
42
- |---|---|---|
43
- | CTA | `CTA` | Primary Column, Sideburn, Outro |
44
- | Call-Out | `CallOut` | Primary Column, Sideburn, Outro |
45
- | RTBs | `RTBs` | Primary Column, Sideburn, Outro |
46
- | Confidence Tags | `ConfidenceTags` | Primary Column, Sideburn, Outro |
47
- | Lead Form | `LeadForm` | Primary Column, Outro only (not Sideburn) |
48
- | Rich Text | `RichText` | Primary Column, Sideburn, Outro |
66
+ 37 content types. Zone availability varies not all types are valid in Sideburn or Outro. See [general/overview.md](./general/overview.md) for the full zone availability matrix.
67
+
68
+ | Group | Content Types |
69
+ |---|---|
70
+ | **Forms** | `LeadForm`, `MultiStepLeadForm`, `EmailCalloutBlock`, `OptIn` |
71
+ | **CTAs** | `CTA`, `SimpleCTABlock`, `CallOut` |
72
+ | **Value props (RTBs)** | `RTBs`, `RTBDescriptive`, `RTBHighlight`, `RTBDynamic` |
73
+ | **Trust & social proof** | `ConfidenceTags`, `MultiTestimonial`, `PullQuote`, `WAHFU` |
74
+ | **Media** | `ContentImageBlock`, `FullSizeImageWithHighlightBox`, `EmbeddedVideoBlock` |
75
+ | **Products & content** | `ProductBlock`, `CrossSellCardBlock`, `ResourceSpotlight`, `BasicContentBlock` |
76
+ | **Reference & structure** | `AccordionBlock`, `SideMenuExplorer`, `TableBlock`, `DecorativeListBlock` |
77
+ | **Urgency** | `LastChanceBlock`, `SpeedBump` |
78
+ | **Prose & text** | `BodyTextCopyBlock`, `RichText`, `PullQuote` |
79
+ | **Layout & utility** | `SpacingBlock`, `HorizontalRule`, `BackgroundColorBlock`, `InlineMessage` |
80
+ | **Platform-specific** | `AllBlogsPostBlock` (blog), `RecentBlogPostsBlock` (blog), `HotJobsBlock` (careers) |
49
81
 
50
- ### Footer Zone (footer section only)
82
+ Full detail + zone matrix: [general/overview.md](./general/overview.md)
51
83
 
52
- | Content Type | Component | Subsection |
84
+ ---
85
+
86
+ ### Anklet Zone
87
+
88
+ Fixed structure — one component, no variants.
89
+
90
+ | Content Type | Component | Description |
53
91
  |---|---|---|
54
- | Disclaimer | `Disclaimer` | Disclaimer subsection |
55
- | Disclosure | `Disclosure` | Disclosure subsection |
56
- | Compliance Block | `ComplianceBlock` | Compliance subsection |
92
+ | Anklet | `Anklet` | Horizontal quick-links bar above the footer |
93
+
94
+ The `Anklet` component is placed outside any `<Section>` wrapper, between the General Content zone and the Footer zone.
95
+
96
+ ---
97
+
98
+ ### Footer Zone
99
+
100
+ 7 content types with a mandatory render order.
101
+
102
+ | Order | Content Type | Component | Description |
103
+ |---|---|---|---|
104
+ | 1 | Links & Social | `LinksAndSocial` | Footer nav columns + social icons |
105
+ | 2 | Disclaimers | `Disclaimer` | Static legal copy (always visible) |
106
+ | 3 | Disclosures | `Disclosure` | Toggle starts collapsed |
107
+ | 3 | Disclosure Toggle Open | `DisclosureToggleOpen` | Toggle starts expanded |
108
+ | 4 | Compliance | `ComplianceBlock` | Item Number / Material ID |
109
+ | 5 | Legal Links | `LegalLinks` | Privacy, Terms, Copyright — always last |
110
+
111
+ → Full detail + placement example: [footer/overview.md](./footer/overview.md)
112
+
113
+ ---
57
114
 
58
115
  ## Zone Exclusivity Rule
59
116
 
@@ -0,0 +1,158 @@
1
+ # Discovery
2
+
3
+ This file teaches you how to navigate lion-make. Read it before looking at any other file. It tells you where to find component guidance, source code, and tokens — and how to verify your decisions before building.
4
+
5
+ **Do not guess. Every component, prop, and token in this system is documented. If you cannot find it here, it does not exist in lion-make.**
6
+
7
+ ---
8
+
9
+ ## Step 1 — Identify the Zone
10
+
11
+ Before choosing any component, identify which zone the content belongs to. Zone determines everything else.
12
+
13
+ ```
14
+ Ask: Where on the page does this content live?
15
+ ├── Top of every page (logo, nav, CTA bar)? → Header zone
16
+ ├── Primary visual area directly below the header? → Hero zone
17
+ ├── Body of the page (content, forms, media)? → General zone
18
+ ├── Quick-links bar just above the footer? → Anklet zone
19
+ └── Bottom of page (legal, nav columns, copyright)?→ Footer zone
20
+ ```
21
+
22
+ **Authoritative zone table:** `guidelines/composition/zones.md`
23
+ If you are unsure which zone applies, read that file first. It lists every zone, every template, and every allowed content type.
24
+
25
+ ---
26
+
27
+ ## Step 2 — Find the Right Content Type
28
+
29
+ Once you know the zone, find the content type catalog for that zone.
30
+
31
+ | Zone | Overview file |
32
+ |---|---|
33
+ | Header | `guidelines/content-types/header/overview.md` |
34
+ | Hero | `guidelines/content-types/hero/overview.md` |
35
+ | General | `guidelines/content-types/general/overview.md` |
36
+ | Footer | `guidelines/content-types/footer/overview.md` |
37
+
38
+ Each overview file has a full list of available content types, a decision tree for choosing between them, and links to the individual type files.
39
+
40
+ For the individual type detail (props, usage example, design tokens):
41
+
42
+ ```
43
+ guidelines/content-types/[zone]/[type-name].md
44
+
45
+ Examples:
46
+ guidelines/content-types/hero/cta-hero-block.md
47
+ guidelines/content-types/general/accordion-block.md
48
+ guidelines/content-types/footer/disclosures.md
49
+ guidelines/content-types/header/top-level-navigation.md
50
+ ```
51
+
52
+ **Never use a content type that does not have a file in this folder.** If a type name does not appear in an overview file, it does not exist in this system.
53
+
54
+ ---
55
+
56
+ ## Step 3 — Find the Source Code
57
+
58
+ Every content type has a corresponding React component in `src/components/`. The folder mirrors the zone structure.
59
+
60
+ ```
61
+ src/components/
62
+ header/ → HeaderCTA, HeaderLogo, HeaderProduct, HeaderSectionNavigation,
63
+ HeaderSectionTitle, TopLevelNavigation, HeaderUnderwriter,
64
+ CorporateUniversalHeader, GlobalHeaderBar
65
+ hero/ → CTAHeroBlock, HeroBlock, MultiHero, NotAvailableHeroBlock
66
+ general/ → 37 components (AccordionBlock, RTBs, LeadForm, etc.)
67
+ footer/ → LinksAndSocial, Disclaimer, Disclosure, DisclosureToggleOpen,
68
+ ComplianceBlock, LegalLinks
69
+ layout/ → PageForehead, PageSideburn, Section, Container, Anklet
70
+ ```
71
+
72
+ **File naming:** PascalCase matching the component name exactly.
73
+ ```
74
+ src/components/hero/CTAHeroBlock.tsx
75
+ src/components/general/AccordionBlock.tsx
76
+ src/components/footer/DisclosureToggleOpen.tsx
77
+ ```
78
+
79
+ All components are re-exported from the package root. Import from `lion-make`, not from the file path directly:
80
+ ```tsx
81
+ import { CTAHeroBlock, AccordionBlock } from 'lion-make' ✓
82
+ import { CTAHeroBlock } from 'lion-make/src/components/hero/CTAHeroBlock' ✗
83
+ ```
84
+
85
+ ---
86
+
87
+ ## Step 4 — Find Design Tokens
88
+
89
+ All tokens are CSS custom properties. They live in `src/tokens/`. Never hardcode values — always use a token.
90
+
91
+ | Category | File | Key tokens |
92
+ |---|---|---|
93
+ | Color | `src/tokens/colors.css` | `--color-brand`, `--color-teal`, `--color-text`, `--color-gray-*`, `--color-line` |
94
+ | Typography | `src/tokens/typography.css` | `--h1-font-size` through `--h6-font-size`, `--font-weight-*`, `--font-family-sans-serif` |
95
+ | Spacing | `src/tokens/metrics.css` | `--padding-*`, `--edge-padding`, `--Grid-gutter-size`, `--border-radius-*`, `--border-width-*` |
96
+ | Breakpoints | `src/tokens/breakpoints.css` | `--bp-xs` through `--bp-xl`, custom media queries |
97
+ | Z-index | `src/tokens/z-index.css` | Layer stacking order |
98
+ | Utilities | `src/tokens/make-utilities.css` | Responsive utility classes |
99
+
100
+ Human-readable token docs: `guidelines/foundations/[category].md`
101
+
102
+ ---
103
+
104
+ ## Step 5 — Verify Before Building
105
+
106
+ Before generating any component, verify these three things:
107
+
108
+ **1. The content type exists.**
109
+ Check `guidelines/content-types/[zone]/overview.md`. If the type is not listed there, do not use it.
110
+
111
+ **2. The props are correct.**
112
+ Check `guidelines/content-types/[zone]/[type].md` for the props table. Then cross-reference the TypeScript interface in `src/components/[zone]/[ComponentName].tsx`. The `.tsx` file is the ground truth for prop names and types.
113
+
114
+ **3. The zone placement is valid.**
115
+ Check `guidelines/composition/zones.md`. Confirm the content type is listed as allowed in the target zone. Sideburn and Outro zones do not exist in the Forehead template.
116
+
117
+ ---
118
+
119
+ ## Preventing Hallucination
120
+
121
+ Common failure modes and how to avoid them:
122
+
123
+ | Risk | Prevention |
124
+ |---|---|
125
+ | Using a component name that doesn't exist | Only use components listed in `content-types/[zone]/overview.md` |
126
+ | Using wrong prop names | Read the props table in the type's `.md` file; verify against the `.tsx` interface |
127
+ | Placing a content type in the wrong zone | Check `composition/zones.md` before placing anything |
128
+ | Hardcoding a color or size | Look up the token in `src/tokens/` — if no token exists, flag it |
129
+ | Using a platform-specific component on the wrong platform | `AllBlogsPostBlock` and `RecentBlogPostsBlock` are blog-only; `HotJobsBlock` is careers-only |
130
+ | Stacking multiple hero types | Only one hero content type per page |
131
+ | Nesting a Section inside another Section | Sections are top-level — they do not nest |
132
+
133
+ ---
134
+
135
+ ## Quick Lookup: Common Tasks
136
+
137
+ | Task | Where to look |
138
+ |---|---|
139
+ | "What can I put in the hero?" | `guidelines/content-types/hero/overview.md` |
140
+ | "Which hero type should I use?" | `guidelines/content-types/hero/overview.md` → decision tree |
141
+ | "What props does CTAHeroBlock take?" | `guidelines/content-types/hero/cta-hero-block.md` + `src/components/hero/CTAHeroBlock.tsx` |
142
+ | "What general content types work in Sideburn?" | `guidelines/content-types/general/overview.md` → zone matrix |
143
+ | "What's the brand blue?" | `src/tokens/colors.css` → `--color-brand` |
144
+ | "What's the base font size?" | `src/tokens/typography.css` → `--body-font-size` |
145
+ | "How do I set up a page?" | `guidelines/setup.md` → minimal page example |
146
+ | "Can I use Sideburn template here?" | `guidelines/composition/templates.md` |
147
+ | "Is this a hard rule or a guideline?" | `guidelines/composition/constraints.md` |
148
+ | "Where does the Anklet go?" | Between `<Section zone="primary-column">` and `<Section zone="footer">` — outside any Section |
149
+ | "How are footers ordered?" | `guidelines/content-types/footer/overview.md` → render order table |
150
+ | "What are the header bars?" | `CorporateUniversalHeader` (thin top bar), `GlobalHeaderBar` (main nav bar) — see `guidelines/content-types/header/overview.md` |
151
+
152
+ ---
153
+
154
+ ## Icon Discovery
155
+
156
+ No icon library is bundled in lion-make. Use inline SVGs or a separate icon package. See `guidelines/icon-discovery.md` for the current state and planned coverage.
157
+
158
+ Social platform icons (used in `LinksAndSocial`) are implemented as CSS class hooks (`lion-icon--facebook`, etc.) — provide the icon rendering via your own icon system.
@@ -45,46 +45,120 @@ Components are organized by zone. Import only what you need.
45
45
  // Layout primitives (not content types)
46
46
  import { PageForehead, PageSideburn, Section, Container, Anklet } from 'lion-make'
47
47
 
48
- // Header zone components
48
+ // Header zone — structural bars
49
49
  import { CorporateUniversalHeader, GlobalHeaderBar } from 'lion-make'
50
50
 
51
- // Hero zone components
52
- import { Hero } from 'lion-make'
53
-
54
- // General zone components (Primary Column, Sideburn, Outro)
55
- import { CTA, CallOut, RTBs, ConfidenceTags, LeadForm, RichText } from 'lion-make'
56
-
57
- // Footer zone components
58
- import { Disclaimer, Disclosure, ComplianceBlock } from 'lion-make'
51
+ // Header zone — content types
52
+ import {
53
+ HeaderCTA,
54
+ HeaderLogo,
55
+ HeaderProduct,
56
+ HeaderSectionNavigation,
57
+ HeaderSectionTitle,
58
+ TopLevelNavigation,
59
+ HeaderUnderwriter,
60
+ } from 'lion-make'
61
+
62
+ // Hero zone — content types
63
+ import { CTAHeroBlock, HeroBlock, MultiHero, NotAvailableHeroBlock } from 'lion-make'
64
+
65
+ // General zone — content types (Primary Column, Sideburn, Outro)
66
+ import {
67
+ RTBs, RTBDescriptive, RTBHighlight, RTBDynamic,
68
+ CTA, SimpleCTABlock, CallOut,
69
+ AccordionBlock, BackgroundColorBlock, BasicContentBlock, BodyTextCopyBlock,
70
+ ConfidenceTags, ContentImageBlock, CrossSellCardBlock, DecorativeListBlock,
71
+ EmailCalloutBlock, EmbeddedVideoBlock, FullSizeImageWithHighlightBox,
72
+ HorizontalRule, InlineMessage, LastChanceBlock, LeadForm, MultiStepLeadForm,
73
+ MultiTestimonial, OptIn, ProductBlock, PullQuote, ResourceSpotlight,
74
+ RichText, SideMenuExplorer, SpacingBlock, SpeedBump, TableBlock, WAHFU,
75
+ // Platform-specific
76
+ AllBlogsPostBlock, RecentBlogPostsBlock, HotJobsBlock,
77
+ } from 'lion-make'
78
+
79
+ // Footer zone — content types
80
+ import {
81
+ LinksAndSocial,
82
+ Disclaimer,
83
+ Disclosure,
84
+ DisclosureToggleOpen,
85
+ ComplianceBlock,
86
+ LegalLinks,
87
+ } from 'lion-make'
59
88
  ```
60
89
 
61
- ## Minimal Page Example
90
+ ## Minimal Page Example (Forehead template)
62
91
 
63
92
  ```tsx
64
- import { PageForehead, Section, Container, GlobalHeaderBar, Hero, CTA, Disclaimer, Anklet } from 'lion-make'
93
+ import {
94
+ PageForehead,
95
+ Section,
96
+ Container,
97
+ CorporateUniversalHeader,
98
+ GlobalHeaderBar,
99
+ HeaderLogo,
100
+ HeaderUnderwriter,
101
+ TopLevelNavigation,
102
+ HeaderCTA,
103
+ CTAHeroBlock,
104
+ RichText,
105
+ Anklet,
106
+ LinksAndSocial,
107
+ Disclaimer,
108
+ ComplianceBlock,
109
+ LegalLinks,
110
+ } from 'lion-make'
65
111
 
66
112
  export function Page() {
67
113
  return (
68
114
  <PageForehead>
115
+
69
116
  <Section zone="header">
70
- <GlobalHeaderBar logoSrc="/logo.svg" logoAlt="Company" />
117
+ <CorporateUniversalHeader>
118
+ <HeaderLogo src="/logo.svg" alt="Mutual of Omaha" href="/" />
119
+ <HeaderUnderwriter text="Underwritten by United of Omaha Life Insurance Company" />
120
+ </CorporateUniversalHeader>
121
+ <GlobalHeaderBar>
122
+ <TopLevelNavigation items={navItems} />
123
+ <HeaderCTA label="Get a quote" href="/quote" variant="button" />
124
+ </GlobalHeaderBar>
71
125
  </Section>
72
126
 
73
127
  <Section zone="hero">
74
- <Hero variant="full-bleed" heading="Protect what matters" ctaLabel="Get a quote" ctaHref="/quote" />
128
+ <CTAHeroBlock
129
+ heading="Protect what matters most"
130
+ subheading="Affordable term life insurance."
131
+ ctas={[{ label: 'Get a free quote', href: '/quote', variant: 'primary' }]}
132
+ imageSrc="/hero.jpg"
133
+ imageAlt=""
134
+ layout="split-right"
135
+ />
75
136
  </Section>
76
137
 
77
138
  <Section zone="primary-column">
78
139
  <Container type="single">
79
- <CTA type="button" label="Start for $0.99" href="/start" variant="primary" />
140
+ <RichText html="<p>Body content goes here.</p>" />
80
141
  </Container>
81
142
  </Section>
82
143
 
83
- <Anklet links={[{ label: 'About', href: '/about' }, { label: 'Contact', href: '/contact' }]} />
144
+ <Anklet
145
+ links={[
146
+ { label: 'Life Insurance', href: '/life' },
147
+ { label: 'Medicare', href: '/medicare' },
148
+ { label: 'Find an Agent', href: '/agent-finder' },
149
+ ]}
150
+ />
84
151
 
85
152
  <Section zone="footer">
86
- <Disclaimer text="Products underwritten by Mutual of Omaha Insurance Company." itemNumber="ICC20-TERM" />
153
+ <LinksAndSocial columns={footerColumns} socialLinks={socialLinks} />
154
+ <Disclaimer text="Products underwritten by Mutual of Omaha Insurance Company." />
155
+ <ComplianceBlock itemNumber="M37594_0524" />
156
+ <LegalLinks
157
+ copyrightText="© 2025 Mutual of Omaha Insurance Company"
158
+ links={legalLinks}
159
+ />
87
160
  </Section>
161
+
88
162
  </PageForehead>
89
163
  )
90
164
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lion-make",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "Mondrian-based design system for Figma Make — zone-locked layout system with CSS design tokens and React component stubs.",
5
5
  "type": "module",
6
6
  "main": "./dist/lion-make.umd.cjs",