import './App.css' import HoverComponent from './components/name.tsx' import AdvancedBr from './components/comps.tsx' import { createSignal, onMount } from 'solid-js'; import Reviews from './components/api.tsx'; import Music, { MusicEntry } from './components/music.tsx'; export const [shouldpopup, setpopup] = createSignal(false) export const [ishover, setishover] = createSignal(false) function App() { function remov() { for (let i = 0; i < document.styleSheets.length; i++) { let styleSheet = document.styleSheets[i]; let rules = styleSheet.cssRules || styleSheet.rules; for (let j = 0; j < rules.length; j++) { let rule = rules[j]; if (rule.type === CSSRule.KEYFRAMES_RULE && ((rule as CSSKeyframesRule).name === "slide-left")) { styleSheet.deleteRule(j); } } } } const [musicList, setMusicList] = createSignal([]); const [isLoading, setIsLoading] = createSignal(true); const [isAnimating, setIsAnimating] = createSignal(false); const [animatedwoem, setanimatedwoem] = createSignal(false); onMount(async () => { try { const response = await fetch("https://imtoolazytomakeaproperapi.exhq.dev/"); const data = await response.json(); setMusicList(data); } catch (error) { console.error("Error fetching music data:", error); } finally { setIsLoading(false); } }); let gitgay = { setIsAnimating(true) setTimeout(() => { window.location.href = "https://git.gay/exhq" }, 200); gitgay.src = "/gaybackground.png" }} classList={{ 'gitgayimg': true, 'animate': isAnimating(), 'gaybackground': isAnimating() }} src="https://git.gay/assets/img/logo.png" alt="LMAO IMAGINE BEING BLIND" /> as HTMLImageElement return ( <>
LMAO IMAGINE BEING BLIND

AdvancedBr my beloved

link tree

{gitgay} { setanimatedwoem(true) setTimeout(() => { window.location.href = "https://woem.men/@exhq" }, 200); }} classList={{ 'woemimg': true, 'animate': animatedwoem() }} src="https://woem.men/files/356134d8-df3b-41dc-ac73-c4420442bf3a" alt="LMAO IMAGINE BEING BLIND" />

Git Fedi

hi :3

silly goober who does silly stuff
self proclaimed programmer and progamer
shitposts for fun
{ setishover(true) }} onmouseleave={() => { setishover(false) }} style={{ opacity: isAnimating() || animatedwoem() ? "0%" : "100%" }} class='cardchild'>
{ setpopup(!shouldpopup()) }} class="musicbutton" value="say gex" />
{isLoading() ? (

Loading...

) : ( musicList().map((link) => ) )}
) } export default App