0
mirror of https://github.com/valentineus/popov.link.git synced 2025-07-04 08:30:27 +03:00
Files
popov.link/src/components/Sections/SocialLinks.astro

20 lines
306 B
Plaintext
Raw Normal View History

---
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>