aboutsummaryrefslogtreecommitdiff
path: root/src/components/Sections/SocialLinks.astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Sections/SocialLinks.astro')
-rw-r--r--src/components/Sections/SocialLinks.astro19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/components/Sections/SocialLinks.astro b/src/components/Sections/SocialLinks.astro
new file mode 100644
index 0000000..c804b60
--- /dev/null
+++ b/src/components/Sections/SocialLinks.astro
@@ -0,0 +1,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>