make pfp light up
This commit is contained in:
parent
4268b094f7
commit
cf292c95f1
1 changed files with 13 additions and 1 deletions
|
@ -75,7 +75,19 @@ export default function Me() {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="me-container">
|
<div className="me-container">
|
||||||
<img src="logo.png" alt="the nin0 logo" />
|
<img
|
||||||
|
src="logo.png"
|
||||||
|
alt="the nin0 logo"
|
||||||
|
style={{
|
||||||
|
borderColor: presence
|
||||||
|
? ["online", "idle"].includes(
|
||||||
|
presence.discord_status
|
||||||
|
)
|
||||||
|
? "#a6e3a1"
|
||||||
|
: "#6c7086"
|
||||||
|
: "#6c7086"
|
||||||
|
}}
|
||||||
|
/>
|
||||||
<h3>
|
<h3>
|
||||||
nin0 <span style={{ fontSize: "0.9rem" }}>(he/him)</span>
|
nin0 <span style={{ fontSize: "0.9rem" }}>(he/him)</span>
|
||||||
</h3>
|
</h3>
|
||||||
|
|
Loading…
Add table
Reference in a new issue