'use client'; import { useEffect, useState } from 'react'; import './page.css'; import { DiscordStatus } from './components/discordstatus'; const TWITTER_LINK = "https://x.com/neruu444" const DISCORD_USER = "neru444" const DISCORD_ID = "1104474057916809226" const STEAM_LINK = "https://steamcommunity.com/profiles/76561198440714757/" function Content() { const [isOpen, setIsOpen] = useState(false); const toggleModal = () => setIsOpen(!isOpen); useEffect(() => { const handleKeyDown = (e: KeyboardEvent) => { if (e.key === 'Escape' && isOpen) setIsOpen(false); }; window.addEventListener('keydown', handleKeyDown); return () => window.removeEventListener('keydown', handleKeyDown); }, [isOpen]); const marqueeText = "✧ ꒰ა˵• ﻌ •˵ა꒱ ✧ ฅ^•ﻌ•^ฅ ✧ ᶻ 𝗓 𐰁 /ᐠ. 。 .ᐟ\\ ✧ ฅ/ᐠ. ̫ .ᐟ\\ฅ ✧ ꒰ა≽^•⩊•^≼໒꒱ ✧ ₍˄·͈༝·͈˄₎ ✧ /ᐠ. ⩊ .ᐟ\\ノ ✧ 𓏲ּ ֶָ ࣪ /ᐠ .ᆺ. ᐟ\\ノ ✧"; return ( <>
˚₊‧꒰ა 𓂋 ໒꒱ ‧₊˚
User: {DISCORD_USER}
ID: {DISCORD_ID}