Skip to content

Commit 65ccb6e

Browse files
author
Kurt Medley
committed
feat(html): add branded storybook icon links in intro and readme
1 parent 77ff7d9 commit 65ccb6e

11 files changed

Lines changed: 83 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Cedar One Changelog
22

3+
## 0.1.43-alpha.0 - 2026-02-09
4+
5+
- Added branded SVG social/framework icon assets under `docs/assets/icons`.
6+
- Updated HTML Storybook introduction and README with icon-based links to HTML, Vue, and React Storybooks.
7+
- Added shared Storybook utility support for end-justified flex layouts.
8+
39
## 0.1.42-alpha.0 - 2026-02-09
410

511
- Updated workspace dependencies to latest compatible versions, including Storybook `10.2.7` packages.

README.md

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,21 @@ and shared across platforms. Behavior and validation are pushed into build-time
1313
tooling and small, explicit adapters, keeping runtime output lean, predictable,
1414
and portable.
1515

16-
Explore the system:
16+
<br>
1717

18-
- [HTML](https://rei.github.io/rei-cedar-one/html)
19-
- [Vue](https://rei.github.io/rei-cedar-one/vue)
20-
- [React](https://rei.github.io/rei-cedar-one/react)
18+
<p align="center">
19+
<a href="https://rei.github.io/rei-cedar-one/html/">
20+
<img src="docs/assets/icons/html5.svg" alt="HTML Storybook" title="HTML Storybook" width="24" height="24" />
21+
</a>
22+
&nbsp;&nbsp;&nbsp;
23+
<a href="https://rei.github.io/rei-cedar-one/vue/">
24+
<img src="docs/assets/icons/vue.svg" alt="Vue Storybook" title="Vue Storybook" width="24" height="24" />
25+
</a>
26+
&nbsp;&nbsp;&nbsp;
27+
<a href="https://rei.github.io/rei-cedar-one/react/">
28+
<img src="docs/assets/icons/react.svg" alt="React Storybook" title="React Storybook" width="24" height="24" />
29+
</a>
30+
</p>
2131

2232
## Packages
2333

apps/html/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# @rei/c1-html Changelog
22

3+
## 0.1.23-alpha.0 - 2026-02-09
4+
5+
- Added branded icon links in the HTML Storybook introduction for HTML, Vue, and React Storybook entry points.
6+
- Refined intro icon layout utilities and spacing for improved presentation.
7+
38
## 0.1.22-alpha.0 - 2026-02-08
49

510
- Added explicit docs classification metadata to every HTML story (`parameters.c1Meta.classification`).

apps/html/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rei/c1-html",
3-
"version": "0.1.22-alpha.0",
3+
"version": "0.1.23-alpha.0",
44
"private": true,
55
"scripts": {
66
"lint": "eslint .",

apps/html/stories/Introduction.mdx

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,4 +142,52 @@ Cedar One is guided by a small set of system-level principles that shape how com
142142

143143
Together, these principles keep the system portable, predictable, and performant as platforms and frameworks evolve.
144144

145+
<div className="c1-story-flex c1-story-justify-center c1-story-gap-12 c1-story-align-center c1-story-my-48">
146+
<a
147+
className="cdr-link cdr-link--standalone"
148+
href="https://github.com/rei/rei-cedar-one"
149+
target="_blank"
150+
rel="noreferrer"
151+
aria-label="Cedar One on GitHub"
152+
>
153+
<img
154+
className="cdr-not-prose"
155+
src="assets/icons/github.svg"
156+
width="24"
157+
height="24"
158+
alt="GitHub"
159+
/>
160+
</a>
161+
<a
162+
className="cdr-link cdr-link--standalone"
163+
href="https://rei.github.io/rei-cedar-one/vue/"
164+
target="_blank"
165+
rel="noreferrer"
166+
aria-label="Vue Storybook"
167+
>
168+
<img
169+
className="cdr-not-prose"
170+
src="assets/icons/vue.svg"
171+
width="24"
172+
height="24"
173+
alt="Vue Storybook"
174+
/>
175+
</a>
176+
<a
177+
className="cdr-link cdr-link--standalone"
178+
href="https://rei.github.io/rei-cedar-one/react/"
179+
target="_blank"
180+
rel="noreferrer"
181+
aria-label="React Storybook"
182+
>
183+
<img
184+
className="cdr-not-prose"
185+
src="assets/icons/react.svg"
186+
width="24"
187+
height="24"
188+
alt="React Storybook"
189+
/>
190+
</a>
191+
</div>
192+
145193
</div>

apps/storybook/storybook.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,10 @@
106106
justify-content: center;
107107
}
108108

109+
.c1-story-justify-end {
110+
justify-content: flex-end;
111+
}
112+
109113
.c1-story-justify-start {
110114
justify-items: start;
111115
}

docs/assets/icons/github.svg

Lines changed: 1 addition & 0 deletions
Loading

docs/assets/icons/html5.svg

Lines changed: 1 addition & 0 deletions
Loading

docs/assets/icons/react.svg

Lines changed: 1 addition & 0 deletions
Loading

docs/assets/icons/vue.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)