diff --git a/site/components/layout/HomeFooter.js b/site/components/layout/HomeFooter.js
index 86fe9fb..63a7174 100644
--- a/site/components/layout/HomeFooter.js
+++ b/site/components/layout/HomeFooter.js
@@ -1,41 +1,13 @@
-import Link from 'next/link'
import { useTranslations } from 'next-intl'
-import SvgContainer from '../svg/SvgContainer'
+import Socials from './Socials'
const HomeFooter = function () {
const t = useTranslations()
return (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
{t('copyright')}
+
)
}
diff --git a/site/components/layout/SocialIconLink.js b/site/components/layout/SocialIconLink.js
new file mode 100644
index 0000000..9c7918d
--- /dev/null
+++ b/site/components/layout/SocialIconLink.js
@@ -0,0 +1,12 @@
+import SvgContainer from '../svg/SvgContainer'
+
+const SocialIconLink = ({ href, iconName }) => (
+
+
+
+ )
+
+export default SocialIconLink
diff --git a/site/components/layout/Socials.js b/site/components/layout/Socials.js
new file mode 100644
index 0000000..63a9b4b
--- /dev/null
+++ b/site/components/layout/Socials.js
@@ -0,0 +1,15 @@
+import SocialIconLink from './SocialIconLink'
+
+const Socials = () => (
+
+
+
+
+
+
+ )
+
+export default Socials
diff --git a/site/components/layout/ToolsFooter.js b/site/components/layout/ToolsFooter.js
index 0925aa0..75ae419 100644
--- a/site/components/layout/ToolsFooter.js
+++ b/site/components/layout/ToolsFooter.js
@@ -1,41 +1,13 @@
-import Link from 'next/link'
import { useTranslations } from 'next-intl'
-import SvgContainer from '../svg/SvgContainer'
+import Socials from './Socials'
const ToolsFooter = function () {
const t = useTranslations()
return (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
{t('copyright')}
+
)
}