added no ai webring links to main page

This commit is contained in:
2026-02-21 14:29:48 +01:00
parent e192e56326
commit 08a3bb1860
3 changed files with 29 additions and 12 deletions

View File

@@ -8,7 +8,8 @@
listLink, listLink,
prevSymbol, prevSymbol,
nextSymbol, nextSymbol,
highlightEmoji, highlightEmojiLeft,
highlightEmojiRight,
}: { }: {
ringName: string; ringName: string;
ringLink: string; ringLink: string;
@@ -18,14 +19,22 @@
listLink?: string; listLink?: string;
prevSymbol: string; prevSymbol: string;
nextSymbol: string; nextSymbol: string;
highlightEmoji: string;
// Emoji to be used as highlight next to the title
highlightEmojiLeft: string;
/**
* Emoji to be used as highlight to the right of the title. If
* not set, will default to highlightEmojiLeft.
*/
highlightEmojiRight?: string;
} = $props(); } = $props();
</script> </script>
<div class="webring-container"> <div class="webring-container">
<div class="webring-row"> <div class="webring-row">
<span></span> <span></span>
<a href="{ringLink}">{highlightEmoji} {ringName} {highlightEmoji}</a> <a href="{ringLink}">{highlightEmojiLeft} {ringName} {highlightEmojiRight ?? highlightEmojiLeft}</a>
<span></span> <span></span>
</div> </div>
<div class="webring-row"> <div class="webring-row">

View File

@@ -89,7 +89,7 @@
randLink="https://webring.bucketfish.me/redirect.html?to=random&name=denizk0461" randLink="https://webring.bucketfish.me/redirect.html?to=random&name=denizk0461"
prevSymbol="⥼" prevSymbol="⥼"
nextSymbol="⥽" nextSymbol="⥽"
highlightEmoji="🏳️‍🌈" /> highlightEmojiLeft="🏳️‍🌈" />
<!-- gamedev webring --> <!-- gamedev webring -->
<Webring <Webring
@@ -101,7 +101,20 @@
listLink="https://www.rainbowcemetery.com/devring/list.php?id=18" listLink="https://www.rainbowcemetery.com/devring/list.php?id=18"
prevSymbol="&lt;" prevSymbol="&lt;"
nextSymbol="&gt;" nextSymbol="&gt;"
highlightEmoji="👾" /> highlightEmojiLeft="👾"
highlightEmojiRight="🎮" />
<!-- no ai webring -->
<Webring
ringName="no ai webring"
ringLink="https://baccyflap.com/noai"
prevLink="https://baccyflap.com/noai/?prv&s=dzk"
nextLink="https://baccyflap.com/noai/?nxt&s=dzk"
randLink="https://baccyflap.com/noai/?rnd"
prevSymbol="&lt;"
nextSymbol="&gt;"
highlightEmojiLeft="🚫"
highlightEmojiRight="🤖" />
</div> </div>
<GalleryRow entries={galleryTopRow} /> <GalleryRow entries={galleryTopRow} />
@@ -139,6 +152,8 @@
align-items: center; align-items: center;
justify-content: center; justify-content: center;
margin: 16px 0; margin: 16px 0;
flex-wrap: wrap;
gap: 8px;
} }
.gradient-title { .gradient-title {
@@ -152,11 +167,4 @@
-webkit-text-fill-color: transparent; -webkit-text-fill-color: transparent;
padding-bottom: 12px; padding-bottom: 12px;
} }
@media screen and (max-width: 700px) {
.webring-container {
flex-direction: column;
gap: 16px;
}
}
</style> </style>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB