From b6b26a63acefe23f366565e8c5b58b07e320bc14 Mon Sep 17 00:00:00 2001 From: AzizOuertani Date: Fri, 8 Mar 2024 19:23:41 +0100 Subject: [PATCH] feat(footer): add footer component --- public/images/bear.jsx | 78 ++++++++++++++++++++++++++++++++++ src/features/footer/footer.tsx | 71 +++++++++++++++++++++++++++++++ 2 files changed, 149 insertions(+) create mode 100644 public/images/bear.jsx create mode 100644 src/features/footer/footer.tsx diff --git a/public/images/bear.jsx b/public/images/bear.jsx new file mode 100644 index 0000000..23087a4 --- /dev/null +++ b/public/images/bear.jsx @@ -0,0 +1,78 @@ +import React from "react"; + +const BearIllustration = (props) => ( + + + + + + + + + + + + + + + +); + +export default BearIllustration; diff --git a/src/features/footer/footer.tsx b/src/features/footer/footer.tsx new file mode 100644 index 0000000..de8113b --- /dev/null +++ b/src/features/footer/footer.tsx @@ -0,0 +1,71 @@ +import BearIllustration from "~/images/bear"; +import { FacebookLogo } from "~/svg/social/facebook"; +import { InstagramLogo } from "~/svg/social/instagram"; +import { LinkedInLogo } from "~/svg/social/linkedin"; +import { TwitterLogo } from "~/svg/social/twitter"; +import { WebLogo } from "~/svg/social/web"; + +const social = [ + { + name: "Facebook", + href: "https://www.facebook.com/allyouneedisbear", + icon: