1
Fork 0
mirror of https://github.com/Steffo99/steffoweb.git synced 2024-10-16 15:27:28 +00:00

Add fake advert

This commit is contained in:
Steffo 2023-02-28 13:29:13 +01:00
parent 3e49b8205d
commit a198cdeb6f
Signed by: steffo
GPG key ID: 2A24051445686895

View file

@ -4,7 +4,7 @@ import React from 'react'
import type {NextPage} from "next"
import {default as Link} from "next/link"
import {faRedditAlien, faMastodon, faGithub, faDiscord, faTelegram, faSteam, faItchIo, faTwitter, faLinkedin, faStackOverflow, faWikipediaW} from "@fortawesome/free-brands-svg-icons"
import {faBorderAll, faEnvelope, faGlobe, faPlus, faFileCode, faBagShopping} from "@fortawesome/free-solid-svg-icons"
import {faBorderAll, faEnvelope, faGlobe, faPlus, faFileCode, faBagShopping, faShieldAlt} from "@fortawesome/free-solid-svg-icons"
import {LinkPanel} from "../components/LinkPanel"
import {useKonamiCode} from "../hooks/useKonamiCode"
@ -119,6 +119,29 @@ const Index: NextPage = () => {
Hey friends, please make a small personal website, so I can add you here! <span aria-hidden>:D</span>
</small>
</section>
<section className={"panel box home-ad"} id={"panel-adblocker"}>
<h3>
Fake advertisement
</h3>
<p>
Hey! You're browsing the Internet without an ad-blocker!
</p>
<p>
For your safety and better browser performance, you should install:
</p>
<div className={"chapter-1"}>
<LinkPanel icon={faShieldAlt} text={"uBlock Origin"} href={"https://ublockorigin.com"}/>
</div>
<p>
Additionally, if you are technically-inclined, consider setting up this on your network:
</p>
<div className={"chapter-1"}>
<LinkPanel icon={faShieldAlt} text={"PiHole"} href={"https://pi-hole.net"}/>
</div>
<small style={{fontSize: "x-small"}} className={"float-bottom"}>
I am not affiliated with neither of these software, but I heavily recommend them to anyone!
</small>
</section>
</div>
</>
}