From 53bbaac130f1a049cd9956b9319b3f65c8a01413 Mon Sep 17 00:00:00 2001 From: Joey <31974730+Joeysantoro@users.noreply.github.com> Date: Thu, 26 Oct 2023 12:34:22 -0400 Subject: [PATCH] feat: update footer (#175) * feat: update footer * chore: update to test vercel * Update README.md --------- Co-authored-by: Sergey Beresnev <538438+keriat@users.noreply.github.com> --- README.md | 2 +- src/components/Footer.tsx | 15 +++++++++++++-- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 042232e3..71ba7a43 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ ### Funds Raised The alliance contributes capital to advance the development of the ERC-4626 ecosystem. - Fund raised by now: **$35,000+** + Fund raised by now: **$37,000+** [Join the alliance](https://forms.gle/DsCsttsxBUYQTB9r6) diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 7de9c302..d4c527b2 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -1,9 +1,10 @@ import Container from "@/components/Container"; import { SVGProps } from "react"; import { IoMdHeart, IoLogoTwitter } from "react-icons/io"; -import { FaTelegramPlane } from "react-icons/fa"; +import { FaBook, FaGithub, FaPaperPlane, FaTelegramPlane } from "react-icons/fa"; import { AiOutlineUsergroupAdd } from "react-icons/ai"; + const footerNavigation = { social: [ { @@ -16,6 +17,16 @@ const footerNavigation = { href: "https://t.me/erc4626alliance", icon: (props: SVGProps) => , }, + { + name: "Github", + href: "https://github.com/ERC4626-Alliance", + icon: (props: SVGProps) => , + }, + { + name: "Read the EIP", + href: "https://eips.ethereum.org/EIPS/eip-4626", + icon: (props: SVGProps) => , + }, { name: "Join the alliance", href: "https://forms.gle/DsCsttsxBUYQTB9r6", @@ -59,4 +70,4 @@ export default function Footer() { ); -} \ No newline at end of file +}