This commit is contained in:
amy 2024-12-04 01:41:18 +03:30
parent 6c07395de0
commit 0c09e874d1
No known key found for this signature in database
2 changed files with 36 additions and 28 deletions

View file

@ -6,6 +6,7 @@ import Music, { MusicEntry } from './components/music.tsx';
import { Bdpfp, Normalpfp } from './components/pfp.tsx';
import { InfoCard } from './components/middlecard.tsx';
export const [shouldpopup, setpopup] = createSignal(false)
export const [shouldpopupEasterEgg, setpopupEasterEgg] = createSignal(false)
export const [ishover, setishover] = createSignal(false)
let explodcount = 0
@ -79,7 +80,7 @@ function App() {
}} classList={{ 'gitgayimg': true, 'animate': isAnimating(), 'gaybackground': isAnimating() }} src="https://proxy.mono.exhq.dev/_/plain/https://git.lgbt/assets/img/logo.png" alt="logo of git.lgbt" /> as HTMLImageElement
return (
<>
{isitmybd() ? <Bdpfp /> : <Normalpfp />}
{isitmybd() ? <Bdpfp setpopupEasterEgg={setpopupEasterEgg}/> : <Normalpfp setpopupEasterEgg={setpopupEasterEgg}/>}
<p style={{ display: "none" }}>AdvancedBr my beloved</p>
<AdvancedBr count={6} />
@ -177,6 +178,16 @@ function App() {
</div>
</div>
</Music>
<Music shouldpopup={shouldpopupEasterEgg}>
<div class='musicdiv'>
<div class='innermusic'>
<div class="music-close-button-div">
<button class="close-button" onClick={() => { setpopupEasterEgg(false) }}>X</button>
</div>
<img src={"https://pico.exhq.dev/-Aax47Gmdsy"}/>
</div>
</div>
</Music>
<div class='footer'> made with by amy. <a href="https://git.lgbt/exhq/v2.exhq.dev">this website is opensource</a></div>
</>
)