💄 Add github button | update icons

This commit is contained in:
stefan080106
2022-05-19 16:49:55 +02:00
parent e2d13f74ba
commit 3beb419381
6 changed files with 7 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 27 KiB

View File

@@ -7,6 +7,7 @@ import EmailIcon from "../assets/icons/Email_Icon.png";
import DiscordIcon from "../assets/icons/Discord_Icon.png"; import DiscordIcon from "../assets/icons/Discord_Icon.png";
import FacebookIcon from "../assets/icons/Facebook_Icon.png"; import FacebookIcon from "../assets/icons/Facebook_Icon.png";
import InstagramIcon from "../assets/icons/Instagram_Icon.png"; import InstagramIcon from "../assets/icons/Instagram_Icon.png";
import GithubIcon from "../assets/icons/Github_Icon.png";
export default function Home() { export default function Home() {
return ( return (
@@ -23,17 +24,20 @@ export default function Home() {
{/* Social-Media*/} {/* Social-Media*/}
<FadeIn delay={300} transitionDuration={1500} className={styles.SocialMediaContainer}> <FadeIn delay={300} transitionDuration={1500} className={styles.SocialMediaContainer}>
<a href="mailto:solutionsagsit@gmail.com"> <a href="mailto:solutionsagsit@gmail.com">
<Image height={100} width={100} src={EmailIcon} alt="E-Mail" /> <Image height={75} width={75} src={EmailIcon} alt="E-Mail" />
</a> </a>
<a href="https://www.instagram.com/ags_it_solutions/"> <a href="https://www.instagram.com/ags_it_solutions/">
<Image height={100} width={100} src={InstagramIcon} alt="Instagram" /> <Image height={75} width={75} src={InstagramIcon} alt="Instagram" />
</a> </a>
<a href="https://www.facebook.com/AGS-It-Solutions-106590378715946"> <a href="https://www.facebook.com/AGS-It-Solutions-106590378715946">
<Image height={100} width={100} src={FacebookIcon} alt="Facebook" /> <Image height={75} width={75} src={FacebookIcon} alt="Facebook" />
</a> </a>
<a href="https://discord.gg/cgq2NA2sdd"> <a href="https://discord.gg/cgq2NA2sdd">
<Image height={100} width={100} src={DiscordIcon} alt="Discord" /> <Image height={100} width={100} src={DiscordIcon} alt="Discord" />
</a> </a>
<a href="https://github.com/AGS-IT-Solutions">
<Image height={90} width={90} src={GithubIcon} alt="Github" />
</a>
</FadeIn> </FadeIn>
</main> </main>
); );