aboutsummaryrefslogtreecommitdiff
path: root/src/components/Sections/SocialLinks.astro
blob: c804b60d68f7304b571565551195f2225c57449f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
import GitHubIcon from "../Icons/GitHub.astro";
import LinkedInIcon from "../Icons/LinkedIn.astro";
import EmailIcon from "../Icons/Email.astro";
---

<style lang="scss">
	div {
		margin-bottom: 2rem;
	}
</style>

<section>
	<div>
		<GitHubIcon />
		<LinkedInIcon />
		<EmailIcon />
	</div>
</section>