Before social networks stitched the web together with algorithms, personal sites banded into webrings — hand-curated rings of related pages you could surf by clickingDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/apursley2012/webmaster/llms.txt
Use this file to discover all available pages before exploring further.
PREV and NEXT buttons embedded on each member site. Joining a webring meant your site showed up in a navigable chain, driving traffic between like-minded pages without a single search engine involved. WebringBadges recreates that ritual: a small membership panel in the homepage sidebar proudly declaring three ring affiliations, complete with navigation buttons that transport visitors straight back to 2001.
Props
WebringBadges takes no props. All ring data — names, colors, and layout — is hardcoded directly in the component.
This component is fully self-contained. There are no configurable props. To change ring names or colors, fork the component and edit the hardcoded values directly. See the Customization tip below.
The Three Webrings
Each badge is a horizontally laid-out strip 150 px wide, displaying< PREV, the ring name in the center, and NEXT > at the right. The three rings rendered are:
HTML Ring
Background
bg-blue-900 (dark navy), white base text, ring name in text-yellow-300. The OG ring for markup enthusiasts.Geocities
Background
bg-green-800 (forest green), white base text, ring name in text-pink-300. Honoring the spiritual home of the personal homepage.Web Dev
Background
bg-purple-900 (deep purple), white base text, ring name in text-cyan-300. For the builders, tweakers, and view-source devotees.Visual Structure
The component renders abevel-container panel with a bg-silver background — the classic raised-edge Windows 95 box that makes everything feel tangibly clickable. Inside, a heading and a stacked column of badges:
Badge Markup
Each individual badge uses identical structural classes with only the background color and name text color varying:Full Component Source
The exported component isWebringBadges (bundled alias W):
Usage
Drop<WebringBadges /> anywhere — it is currently placed in the homepage left sidebar column (md:col-span-1), sitting below the “My Rig” photo and above the blinking guestbook callout:
The
< PREV and NEXT > navigation buttons are purely decorative — they render as <span> elements with no href or onClick handler attached. They evoke the webring aesthetic without linking to an actual ring network. If you want live navigation, you’ll need to wire them up to real webring URLs.Styling Classes Reference
| Element | Classes |
|---|---|
| Outer container | bevel-container p-3 bg-silver text-center |
| Heading | font-pixel text-sm mb-2 border-b border-gray-500 pb-1 |
| Badge wrapper (all three) | border border-black text-white text-xs p-1 w-full max-w-[150px] flex justify-between items-center |
| HTML Ring background | bg-blue-900 |
| HTML Ring name text | font-bold text-yellow-300 |
| Geocities background | bg-green-800 |
| Geocities name text | font-bold text-pink-300 |
| Web Dev background | bg-purple-900 |
| Web Dev name text | font-bold text-cyan-300 |