"use client"; export function Hero({ glowColor, borderStatus, displayMessage, rotatingMessages, statusMessage, showOldNames, setShowOldNames, oldUsernames, }: { glowColor: string; borderStatus: string; displayMessage: string; rotatingMessages: string[]; statusMessage: string; showOldNames: boolean; setShowOldNames: (show: boolean) => void; oldUsernames: string[]; }) { return (
Space
{/* Rotating Message Bubble (Left Side) */}
{/* Arrow pointing to profile */}

{displayMessage || rotatingMessages[0]}

{/* Status Bubble (Right Side) */}
{/* Arrow pointing to profile */}

Currently{" "} {statusMessage}
on Discord

{/* Name & Description */}

Hey, I'm{" "} setShowOldNames(true)} onMouseLeave={() => setShowOldNames(false)} > Space² {showOldNames && (

Also known as:

    {oldUsernames.map((name, index) => (
  • {name}
  • ))}
)}

A{" "} Self-proclaimed {" "} Developer breaking things to see how they work.

); }