spike :3
This commit is contained in:
parent
3051036e17
commit
397ed05b87
1 changed files with 317 additions and 312 deletions
41
src/App.tsx
41
src/App.tsx
|
|
@ -1,10 +1,10 @@
|
||||||
import "./App.css";
|
import "./App.css";
|
||||||
import { AdvancedBr, Singular88, SingularOomfie } from "./components/comps.tsx";
|
import {AdvancedBr, Singular88, SingularOomfie} from "./components/comps.tsx";
|
||||||
import { createSignal, onMount } from "solid-js";
|
import {createSignal, onMount} from "solid-js";
|
||||||
import Reviews from "./components/api.tsx";
|
import Reviews from "./components/api.tsx";
|
||||||
import { Music, MusicEntry, Song } from "./components/music.tsx";
|
import {Music, MusicEntry, Song} from "./components/music.tsx";
|
||||||
import { Bdpfp, Normalpfp } from "./components/pfp.tsx";
|
import {Bdpfp, Normalpfp} from "./components/pfp.tsx";
|
||||||
import { InfoCard } from "./components/middlecard.tsx";
|
import {InfoCard} from "./components/middlecard.tsx";
|
||||||
|
|
||||||
export const [shouldpopup, setpopup] = createSignal(false);
|
export const [shouldpopup, setpopup] = createSignal(false);
|
||||||
export const [shouldpopup88, setpopup88] = createSignal(false);
|
export const [shouldpopup88, setpopup88] = createSignal(false);
|
||||||
|
|
@ -101,19 +101,19 @@ function App() {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
{isitmybd() ? (
|
{isitmybd() ? (
|
||||||
<Bdpfp setpopupEasterEgg={setpopupEasterEgg} />
|
<Bdpfp setpopupEasterEgg={setpopupEasterEgg}/>
|
||||||
) : (
|
) : (
|
||||||
<Normalpfp setpopupEasterEgg={setpopupEasterEgg} />
|
<Normalpfp setpopupEasterEgg={setpopupEasterEgg}/>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<p style={{ display: "none" }}>AdvancedBr my beloved</p>
|
<p style={{display: "none"}}>AdvancedBr my beloved</p>
|
||||||
<AdvancedBr count={6} />
|
<AdvancedBr count={6}/>
|
||||||
|
|
||||||
<div class="parent">
|
<div class="parent">
|
||||||
<div class="cardchild">
|
<div class="cardchild">
|
||||||
<h1>link tree</h1>
|
<h1>link tree</h1>
|
||||||
<div class="linktree">{gitgay}</div>
|
<div class="linktree">{gitgay}</div>
|
||||||
<br />
|
<br/>
|
||||||
<div class="linktree">
|
<div class="linktree">
|
||||||
<span class="gitgaytext">Git</span>
|
<span class="gitgaytext">Git</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -125,7 +125,7 @@ function App() {
|
||||||
}}
|
}}
|
||||||
class="cardchild"
|
class="cardchild"
|
||||||
>
|
>
|
||||||
<InfoCard bd={isitmybd()} />
|
<InfoCard bd={isitmybd()}/>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
onMouseEnter={() => {
|
onMouseEnter={() => {
|
||||||
|
|
@ -139,10 +139,10 @@ function App() {
|
||||||
}}
|
}}
|
||||||
class="cardchild"
|
class="cardchild"
|
||||||
>
|
>
|
||||||
<Reviews />
|
<Reviews/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<AdvancedBr count={2} />
|
<AdvancedBr count={2}/>
|
||||||
<div class="easteregg" style={{opacity: isAnimating() ? "0%" : "100%"}}>
|
<div class="easteregg" style={{opacity: isAnimating() ? "0%" : "100%"}}>
|
||||||
<div
|
<div
|
||||||
class="musicbutton"
|
class="musicbutton"
|
||||||
|
|
@ -275,7 +275,7 @@ function App() {
|
||||||
{isLoading() ? (
|
{isLoading() ? (
|
||||||
<p>Loading...</p>
|
<p>Loading...</p>
|
||||||
) : (
|
) : (
|
||||||
musicList().map((link) => <MusicEntry musicInfo={link} />)
|
musicList().map((link) => <MusicEntry musicInfo={link}/>)
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -312,12 +312,12 @@ function App() {
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div style={{}}>
|
<div style={{}}>
|
||||||
<img src="https://amy.rip/88x31.png" alt="" />
|
<img src="https://amy.rip/88x31.png" alt=""/>
|
||||||
<br />
|
<br/>
|
||||||
<span>
|
<span>
|
||||||
feel free to link mine, <code style={{"user-select": "all"}}>https://amy.rip/88x31.png</code>
|
feel free to link mine, <code style={{"user-select": "all"}}>https://amy.rip/88x31.png</code>
|
||||||
</span>
|
</span>
|
||||||
<div style={{ "background-color": "gray", height: "1px" }} />
|
<div style={{"background-color": "gray", height: "1px"}}/>
|
||||||
<div>
|
<div>
|
||||||
<Singular88
|
<Singular88
|
||||||
name="nax"
|
name="nax"
|
||||||
|
|
@ -334,6 +334,11 @@ function App() {
|
||||||
url="https://rinici.de/"
|
url="https://rinici.de/"
|
||||||
src="https://rinici.de/button.png"
|
src="https://rinici.de/button.png"
|
||||||
/>
|
/>
|
||||||
|
<Singular88
|
||||||
|
name="Spike"
|
||||||
|
url="https://potatoe.ca"
|
||||||
|
src="https://potatoe.ca/images/88x31/potatoe.png"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -342,7 +347,7 @@ function App() {
|
||||||
<div class="footer">
|
<div class="footer">
|
||||||
{" "}
|
{" "}
|
||||||
<a href="https://ko-fi.com/amyarson">support me ♥</a>
|
<a href="https://ko-fi.com/amyarson">support me ♥</a>
|
||||||
<br />
|
<br/>
|
||||||
made with ♥ by amy.{" "}
|
made with ♥ by amy.{" "}
|
||||||
<a href="https://git.amy.rip/amy/amy.rip">
|
<a href="https://git.amy.rip/amy/amy.rip">
|
||||||
this website is opensource
|
this website is opensource
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue