Update old usernames in App component and modify display name
This commit is contained in:
@@ -72,8 +72,10 @@ function App() {
|
|||||||
const [showOldNames, setShowOldNames] = useState(false);
|
const [showOldNames, setShowOldNames] = useState(false);
|
||||||
|
|
||||||
const oldUsernames = [
|
const oldUsernames = [
|
||||||
"getspaced (current)",
|
"getspaced (ingame)",
|
||||||
"Space-Banane",
|
"Space² (alternative)",
|
||||||
|
"Space-Banane (2022-2024)",
|
||||||
|
"banana[redacted]_ (2019-2022)",
|
||||||
];
|
];
|
||||||
|
|
||||||
const rotatingMessages = [
|
const rotatingMessages = [
|
||||||
@@ -255,7 +257,7 @@ function App() {
|
|||||||
onMouseEnter={() => setShowOldNames(true)}
|
onMouseEnter={() => setShowOldNames(true)}
|
||||||
onMouseLeave={() => setShowOldNames(false)}
|
onMouseLeave={() => setShowOldNames(false)}
|
||||||
>
|
>
|
||||||
Space
|
Space²
|
||||||
{showOldNames && (
|
{showOldNames && (
|
||||||
<div className="absolute left-1/2 -translate-x-1/2 top-full mt-4 z-50 animate-fade-in flex justify-center w-full">
|
<div className="absolute left-1/2 -translate-x-1/2 top-full mt-4 z-50 animate-fade-in flex justify-center w-full">
|
||||||
<div className="relative bg-gradient-to-br from-purple-500/20 to-pink-500/10 backdrop-blur-md border border-purple-500/30 rounded-xl px-6 py-4 shadow-2xl min-w-[220px] max-w-xs">
|
<div className="relative bg-gradient-to-br from-purple-500/20 to-pink-500/10 backdrop-blur-md border border-purple-500/30 rounded-xl px-6 py-4 shadow-2xl min-w-[220px] max-w-xs">
|
||||||
|
|||||||
Reference in New Issue
Block a user