footer lfg

This commit is contained in:
echo 2024-08-07 09:25:55 +03:30
parent 8037596a66
commit 5033df9648
2 changed files with 8 additions and 3 deletions

View file

@ -9,10 +9,14 @@
background-color: #121212; background-color: #121212;
font-family: monospace; font-family: monospace;
overflow-x: hidden; overflow-x: hidden;
color: pink; color: #ffc8dd;
} }
.footer a {
color: #cdb4db;
}
.musicartist { .musicartist {
font-weight: bolder; font-weight: bolder;
margin-bottom: .5em; margin-bottom: .5em;

View file

@ -3,7 +3,7 @@ import AdvancedBr 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 } from './components/music.tsx'; import Music, { MusicEntry } from './components/music.tsx';
import {Bdpfp, Normalpfp} from './components/pfp.tsx'; import { Bdpfp, Normalpfp } from './components/pfp.tsx';
export const [shouldpopup, setpopup] = createSignal(false) export const [shouldpopup, setpopup] = createSignal(false)
export const [ishover, setishover] = createSignal(false) export const [ishover, setishover] = createSignal(false)
@ -64,7 +64,7 @@ function App() {
</div> </div>
<HoverComponent /> <HoverComponent />
</div> */} </div> */}
{isitmybd() ? <Bdpfp /> : <Normalpfp/>} {isitmybd() ? <Bdpfp /> : <Normalpfp />}
<p style={{ display: "none" }}>AdvancedBr my beloved</p> <p style={{ display: "none" }}>AdvancedBr my beloved</p>
<AdvancedBr count={6} /> <AdvancedBr count={6} />
@ -134,6 +134,7 @@ function App() {
</div> </div>
</div> </div>
</Music> </Music>
<div class='footer'> made with by echo. <a href="https://git.gay/exhq/v2.exhq.dev">this website is opensource</a></div>
</> </>
) )
} }