diff --git a/src/components/contactCard.astro b/src/components/contactCard.astro
index 8684b5e..c35b78c 100644
--- a/src/components/contactCard.astro
+++ b/src/components/contactCard.astro
@@ -2,33 +2,57 @@
export interface Props {
site: string
link: string
+ image: string
}
-const { link, site } = Astro.props
+const { image, link, site } = Astro.props
+const icon: string = `background-image: url('/social/${image}.webp')`
---
- {site}
+
+
{site}
+