|
|
|
@ -8,6 +8,7 @@ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
|
|
|
|
import { faDiscord } from '@fortawesome/free-brands-svg-icons'
|
|
|
|
|
import { faTwitter } from '@fortawesome/free-brands-svg-icons'
|
|
|
|
|
import { faSpotify } from '@fortawesome/free-brands-svg-icons'
|
|
|
|
|
import { faSteam } from '@fortawesome/free-brands-svg-icons'
|
|
|
|
|
import { faSoundcloud } from '@fortawesome/free-brands-svg-icons'
|
|
|
|
|
import { faEnvelope } from '@fortawesome/free-solid-svg-icons'
|
|
|
|
|
|
|
|
|
@ -45,17 +46,48 @@ export default function Index() {
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className={styles.topcontent + " " + styles.links}>
|
|
|
|
|
<a href="#"><p><FontAwesomeIcon icon={faTwitter} /> Twitter</p></a>
|
|
|
|
|
<a href="#"><p><FontAwesomeIcon icon={faSpotify} /> Spotify</p></a>
|
|
|
|
|
<a href="#"><p><FontAwesomeIcon icon={faDiscord} /> Discord</p></a>
|
|
|
|
|
<a href="#"><p><FontAwesomeIcon icon={faSoundcloud} /> SoundCloud</p></a>
|
|
|
|
|
{/* <a href="#"><p><FontAwesomeIcon icon={faEnvelope} /> Email</p></a> */}
|
|
|
|
|
<div>
|
|
|
|
|
<a target="_blank" href="https://twitter.com/invesvpo">
|
|
|
|
|
<span>
|
|
|
|
|
<p>Twitter</p>
|
|
|
|
|
<FontAwesomeIcon icon={faTwitter} />
|
|
|
|
|
</span>
|
|
|
|
|
</a>
|
|
|
|
|
|
|
|
|
|
<a target="_blank" href="https://discord.com/users/221984151161667585">
|
|
|
|
|
<span>
|
|
|
|
|
<p>Discord</p>
|
|
|
|
|
<FontAwesomeIcon icon={faDiscord} />
|
|
|
|
|
</span>
|
|
|
|
|
</a>
|
|
|
|
|
|
|
|
|
|
<a target="_blank" href="https://soundcloud.com/invesvpo">
|
|
|
|
|
<span>
|
|
|
|
|
<p>SoundCloud</p>
|
|
|
|
|
<FontAwesomeIcon icon={faSoundcloud} />
|
|
|
|
|
</span>
|
|
|
|
|
</a>
|
|
|
|
|
|
|
|
|
|
<a target="_blank" href="mailto:">
|
|
|
|
|
<span>
|
|
|
|
|
<p>Email</p>
|
|
|
|
|
<FontAwesomeIcon icon={faEnvelope} />
|
|
|
|
|
</span>
|
|
|
|
|
</a>
|
|
|
|
|
|
|
|
|
|
<a target="_blank" href="https://steamcommunity.com/id/Invesvpo/">
|
|
|
|
|
<span>
|
|
|
|
|
<p>Steam</p>
|
|
|
|
|
<FontAwesomeIcon icon={faSteam} />
|
|
|
|
|
</span>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<footer className={styles.topcontent}>
|
|
|
|
|
<a href="https://dubbelnull.com/" target="_blank">Made by DubbelNull</a> with NextJS and Vercel
|
|
|
|
|
</footer>
|
|
|
|
|
<footer className={styles.topcontent}>
|
|
|
|
|
<a href="https://dubbelnull.com/" target="_blank">Made by DubbelNull</a> with NextJS and Vercel
|
|
|
|
|
</footer>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|