@rxova/brand 0.8.0 → 0.8.1
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.
- package/assets/og/journey.png +0 -0
- package/assets/og/react-inputs.png +0 -0
- package/assets/og/rxova.png +0 -0
- package/assets/og/use-everywhere.png +0 -0
- package/package.json +1 -1
- package/src/components/Header.astro +1 -1
- package/src/components/SiteFooter.astro +10 -3
- package/src/components/SiteTitle.astro +1 -1
package/assets/og/journey.png
CHANGED
|
Binary file
|
|
Binary file
|
package/assets/og/rxova.png
CHANGED
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -59,10 +59,17 @@ const surfaces: readonly SiteLink[] = site ?? [
|
|
|
59
59
|
<div class="rx-footer__brand">
|
|
60
60
|
<a class="rx-footer__mark" href={RXOVA_ORIGIN}>
|
|
61
61
|
<img src={siteUrl('/rxova-logo-256.png')} alt="" width="28" height="28" loading="lazy" />
|
|
62
|
-
<span>
|
|
62
|
+
<span>Rxova</span>
|
|
63
63
|
</a>
|
|
64
|
+
{
|
|
65
|
+
/* Not "React libraries": two of the three ship a framework-agnostic
|
|
66
|
+
core that runs in a worker or a plain script, and Journey also ships a
|
|
67
|
+
browser extension. React is a binding we provide, not the boundary of
|
|
68
|
+
what these are. Same correction as the landing's hero. */
|
|
69
|
+
}
|
|
64
70
|
<p class="rx-footer__blurb">
|
|
65
|
-
|
|
71
|
+
Small TypeScript libraries for the browser, documented in one place. MIT licensed, built in
|
|
72
|
+
the open.
|
|
66
73
|
</p>
|
|
67
74
|
</div>
|
|
68
75
|
|
|
@@ -152,7 +159,7 @@ const surfaces: readonly SiteLink[] = site ?? [
|
|
|
152
159
|
</div>
|
|
153
160
|
|
|
154
161
|
<div class="rx-footer__legal">
|
|
155
|
-
<p>© {year}
|
|
162
|
+
<p>© {year} Rxova · MIT licensed</p>
|
|
156
163
|
<div class="rx-footer__legal-links">
|
|
157
164
|
<a href={siteUrl('/privacy')}>Privacy</a>
|
|
158
165
|
<a href={siteUrl('/terms')}>Terms</a>
|
|
@@ -28,7 +28,7 @@ const { siteTitle, siteTitleHref } = (
|
|
|
28
28
|
---
|
|
29
29
|
|
|
30
30
|
<div class="rx-site-title">
|
|
31
|
-
<a href={RXOVA_ORIGIN} class="rx-site-title__mark" aria-label="
|
|
31
|
+
<a href={RXOVA_ORIGIN} class="rx-site-title__mark" aria-label="Rxova home">
|
|
32
32
|
<img src={mark.src} alt="" width="28" height="28" />
|
|
33
33
|
</a>
|
|
34
34
|
<span class="rx-site-title__sep" aria-hidden="true"></span>
|