@justai/cuts 0.14.0 → 0.15.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.
- package/package.json +1 -1
- package/src/Profile.astro +6 -3
package/package.json
CHANGED
package/src/Profile.astro
CHANGED
|
@@ -59,10 +59,13 @@ const vars = [
|
|
|
59
59
|
<h1 class="pname" set:html={name} />
|
|
60
60
|
<p class="handle">{handle}</p>
|
|
61
61
|
<p class="bio">{bio}</p>
|
|
62
|
+
<!-- prose the face adds under its bio and ABOVE the small print (justai's purpose line). Order is
|
|
63
|
+
the point: a mission line that falls below the meta reads as a footnote. -->
|
|
64
|
+
<slot name="belowBio" />
|
|
62
65
|
{meta && <p class="meta">{meta}</p>}
|
|
63
|
-
<!--
|
|
64
|
-
|
|
65
|
-
|
|
66
|
+
<!-- and whatever follows the small print — the apexes' privacy/terms nav. Both slots stay the
|
|
67
|
+
PERSONA's markup, and therefore the persona's scope, so their styling lives in the persona
|
|
68
|
+
while the frame around them stays shared. -->
|
|
66
69
|
<slot />
|
|
67
70
|
</div>
|
|
68
71
|
</section>
|