mirror of https://github.com/usememos/memos
chore: render placeholder ascii pieces as components
parent
aa5cb455e9
commit
ca2bc4eb84
@ -1,19 +0,0 @@
|
||||
# ASCII Art Credits
|
||||
|
||||
The ASCII bird illustrations rendered by `<Placeholder>` are from **Joan Stark's**
|
||||
classic ASCII art collection. Each piece is signed with her `jgs` tag and the
|
||||
month/year it was published.
|
||||
|
||||
- Source archive: https://github.com/oldcompcz/jgs (Joan Stark's ASCII Art Gallery)
|
||||
- Original site (preserved via WebArchive): https://web.archive.org/web/20091028013825/http://www.geocities.com/SoHo/7373/
|
||||
- Wikipedia: https://en.wikipedia.org/wiki/Joan_Stark
|
||||
|
||||
Joan Stark distributed her art freely on Usenet and the early web. We retain
|
||||
the `jgs` signature visible beneath each piece in the UI so attribution travels
|
||||
with the art wherever it is shown.
|
||||
|
||||
If you add new ASCII pieces to `ascii-pool.ts`:
|
||||
|
||||
- Prefer well-attributed art from established collections.
|
||||
- Keep the original artist signature in the `credit` field (e.g. `"jgs · 4/97"`).
|
||||
- If using a different artist, link the source in this file.
|
||||
@ -0,0 +1,14 @@
|
||||
const BusyHummingbird = () => (
|
||||
<pre
|
||||
aria-hidden="true"
|
||||
className="font-mono text-xs sm:text-sm leading-tight text-muted-foreground whitespace-pre m-0 placeholder-busy-hummingbird-hover"
|
||||
>
|
||||
{String.raw` ,_
|
||||
--=={o )>
|
||||
/ ) )
|
||||
/_/'
|
||||
.- .-`}
|
||||
</pre>
|
||||
);
|
||||
|
||||
export default BusyHummingbird;
|
||||
@ -0,0 +1,15 @@
|
||||
const CuriousCrow = () => (
|
||||
<pre
|
||||
aria-hidden="true"
|
||||
className="font-mono text-xs sm:text-sm leading-tight text-muted-foreground whitespace-pre m-0 placeholder-curious-crow-tilt"
|
||||
>
|
||||
{String.raw` __
|
||||
___(o )>
|
||||
/ ._ )
|
||||
/__/ )/
|
||||
\_//
|
||||
^^`}
|
||||
</pre>
|
||||
);
|
||||
|
||||
export default CuriousCrow;
|
||||
@ -0,0 +1,14 @@
|
||||
const HoveringSwift = () => (
|
||||
<pre
|
||||
aria-hidden="true"
|
||||
className="font-mono text-xs sm:text-sm leading-tight text-muted-foreground whitespace-pre m-0 placeholder-hovering-swift-flutter"
|
||||
>
|
||||
{String.raw` __
|
||||
--<(o )___
|
||||
\ _/
|
||||
'-'
|
||||
. . .`}
|
||||
</pre>
|
||||
);
|
||||
|
||||
export default HoveringSwift;
|
||||
@ -0,0 +1,14 @@
|
||||
const NestingSparrow = () => (
|
||||
<pre
|
||||
aria-hidden="true"
|
||||
className="font-mono text-xs sm:text-sm leading-tight text-muted-foreground whitespace-pre m-0 placeholder-nesting-sparrow-breathe"
|
||||
>
|
||||
{String.raw` _
|
||||
__(.)<
|
||||
/___)
|
||||
~\~~~~~~/~
|
||||
\____/`}
|
||||
</pre>
|
||||
);
|
||||
|
||||
export default NestingSparrow;
|
||||
@ -0,0 +1,15 @@
|
||||
const PerchedFinch = () => (
|
||||
<pre
|
||||
aria-hidden="true"
|
||||
className="font-mono text-xs sm:text-sm leading-tight text-muted-foreground whitespace-pre m-0 placeholder-perched-finch-bob"
|
||||
>
|
||||
{String.raw` .-.
|
||||
(o o)
|
||||
/ V /
|
||||
/( _ )/
|
||||
^^ ^^
|
||||
----| |----`}
|
||||
</pre>
|
||||
);
|
||||
|
||||
export default PerchedFinch;
|
||||
@ -0,0 +1,15 @@
|
||||
const SearchingOwl = () => (
|
||||
<pre
|
||||
aria-hidden="true"
|
||||
className="font-mono text-xs sm:text-sm leading-tight text-muted-foreground whitespace-pre m-0 placeholder-searching-owl-look"
|
||||
>
|
||||
{String.raw` ___
|
||||
/ o o /
|
||||
( V )
|
||||
\ - /
|
||||
/| |/
|
||||
/_|___|_/`}
|
||||
</pre>
|
||||
);
|
||||
|
||||
export default SearchingOwl;
|
||||
@ -0,0 +1,16 @@
|
||||
const VanishedPerch = () => (
|
||||
<pre
|
||||
aria-hidden="true"
|
||||
className="font-mono text-xs sm:text-sm leading-tight text-muted-foreground whitespace-pre m-0 placeholder-vanished-perch-sway"
|
||||
>
|
||||
{String.raw` . .
|
||||
. .
|
||||
|
||||
\|/
|
||||
------+------
|
||||
|
|
||||
/ /`}
|
||||
</pre>
|
||||
);
|
||||
|
||||
export default VanishedPerch;
|
||||
@ -0,0 +1,15 @@
|
||||
const WaywardGull = () => (
|
||||
<pre
|
||||
aria-hidden="true"
|
||||
className="font-mono text-xs sm:text-sm leading-tight text-muted-foreground whitespace-pre m-0 placeholder-wayward-gull-drift"
|
||||
>
|
||||
{String.raw` __
|
||||
___ / _)>
|
||||
\ \_/ /
|
||||
\ /
|
||||
'---'
|
||||
. . .`}
|
||||
</pre>
|
||||
);
|
||||
|
||||
export default WaywardGull;
|
||||
Loading…
Reference in New Issue