+
+
+
+
+
+
+
+
);
};
@@ -93,3 +142,47 @@ const MyNavigation = () => {
export const _default = () => {
return ;
};
+
+function Sticky( {
+ as: Tag = 'div',
+ bottom = 0,
+ colors = 'whitesmoke/lightgrey',
+ top = 0,
+ z: zIndex = 1,
+ ...props
+} ) {
+ const cx = useCx();
+ const [ bgColor, dotColor ] = colors.split( '/' );
+ const className = cx(
+ css( {
+ top,
+ bottom,
+ zIndex,
+ display: 'flex',
+ position: 'sticky',
+ background: `radial-gradient(${ dotColor } 1px, ${ bgColor } 2px) 50%/1em 1em`,
+ } ),
+ props.className
+ );
+ const propsOut = { ...props, className };
+ return ;
+}
+
+function MetaphorIpsum( { quantity } ) {
+ const cx = useCx();
+ const list = [
+ 'A loopy clarinet’s year comes with it the thought that the fenny step-son is an ophthalmologist. The literature would have us believe that a glabrate country is not but a rhythm. A beech is a rub from the right perspective. In ancient times few can name an unglossed walrus that isn’t an unspilt trial.',
+ 'Authors often misinterpret the afterthought as a roseless mother-in-law, when in actuality it feels more like an uncapped thunderstorm. In recent years, some posit the tarry bottle to be less than acerb. They were lost without the unkissed timbale that composed their customer. A donna is a springtime breath.',
+ 'It’s an undeniable fact, really; their museum was, in this moment, a snotty beef. The swordfishes could be said to resemble prowessed lasagnas. However, the rainier authority comes from a cureless soup. Unfortunately, that is wrong; on the contrary, the cover is a powder.',
+ ];
+ quantity = Math.min( list.length, quantity );
+ return (
+ <>
+ { list.slice( 0, quantity ).map( ( text, key ) => (
+