@conduction/docusaurus-preset 2.7.0-beta.1 → 2.7.0-beta.2
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/package.json
CHANGED
|
@@ -316,6 +316,15 @@ export default function Footer() {
|
|
|
316
316
|
Open-source apps for <span className="next-blue">Nextcloud</span>. Built and
|
|
317
317
|
maintained by Conduction in Amsterdam, released under EUPL-1.2.
|
|
318
318
|
</p>
|
|
319
|
+
{/*
|
|
320
|
+
Brand citation. The producer chain stays dot-separated
|
|
321
|
+
(Conduction · sub-brand · partner) and connects to
|
|
322
|
+
Nextcloud through a vermillion-red heart — the "loves"
|
|
323
|
+
relationship is between the producer stack and the
|
|
324
|
+
platform it ships on. Nextcloud is a link to
|
|
325
|
+
nextcloud.com so visitors can verify the platform
|
|
326
|
+
upstream in one click.
|
|
327
|
+
*/}
|
|
319
328
|
<div className="triad">
|
|
320
329
|
<span>
|
|
321
330
|
<span className="h"></span>
|
|
@@ -326,7 +335,17 @@ export default function Footer() {
|
|
|
326
335
|
.map((b, i) => (
|
|
327
336
|
<React.Fragment key={i}> · {b.wordmark}</React.Fragment>
|
|
328
337
|
))}
|
|
329
|
-
{' '}
|
|
338
|
+
{' '}
|
|
339
|
+
<svg className="heart" viewBox="0 0 24 24" fill="currentColor" aria-label="loves" role="img">
|
|
340
|
+
<path d="M12 21s-6.7-4.35-9.2-8.4C.8 9.2 2 5.5 5.2 4.7c2-.5 3.8.4 4.8 1.9 1-1.5 2.8-2.4 4.8-1.9 3.2.8 4.4 4.5 2.4 7.9C18.7 16.65 12 21 12 21z"/>
|
|
341
|
+
</svg>
|
|
342
|
+
{' '}
|
|
343
|
+
<a
|
|
344
|
+
href="https://nextcloud.com"
|
|
345
|
+
target="_blank"
|
|
346
|
+
rel="noopener noreferrer"
|
|
347
|
+
className="next-blue"
|
|
348
|
+
>Nextcloud</a>
|
|
330
349
|
</span>
|
|
331
350
|
</div>
|
|
332
351
|
<div className="socials">
|
|
@@ -190,6 +190,25 @@
|
|
|
190
190
|
display: inline-block; margin-right: 6px;
|
|
191
191
|
vertical-align: middle;
|
|
192
192
|
}
|
|
193
|
+
/* "Conduction ♥ Nextcloud" citation: a vermillion-red heart between
|
|
194
|
+
the producer chain and the Nextcloud platform link. Sized to the
|
|
195
|
+
surrounding 11px caption with a small inline lift so the heart
|
|
196
|
+
centres on the cap-height. */
|
|
197
|
+
.canal-footer .brand .triad .heart {
|
|
198
|
+
width: 11px; height: 11px;
|
|
199
|
+
color: var(--c-red-vermillion);
|
|
200
|
+
display: inline-block;
|
|
201
|
+
vertical-align: -1px;
|
|
202
|
+
margin: 0 2px;
|
|
203
|
+
}
|
|
204
|
+
.canal-footer .brand .triad a.next-blue {
|
|
205
|
+
color: var(--c-nextcloud-blue);
|
|
206
|
+
text-decoration: none;
|
|
207
|
+
transition: color 140ms ease;
|
|
208
|
+
}
|
|
209
|
+
.canal-footer .brand .triad a.next-blue:hover {
|
|
210
|
+
color: var(--c-nextcloud-cyan);
|
|
211
|
+
}
|
|
193
212
|
.canal-footer .brand .socials {
|
|
194
213
|
display: flex; gap: 10px;
|
|
195
214
|
margin-top: 18px;
|