From 48ac6bcdf7f866be19261d8094cb9ed1afa4fa29 Mon Sep 17 00:00:00 2001 From: D-K-P <8297864+D-K-P@users.noreply.github.com> Date: Fri, 6 May 2022 21:13:20 +0100 Subject: [PATCH] Added Twitter icon to the header / footer of the homepage --- app/components/Home/HomeFooter.tsx | 6 ++++++ app/components/Home/HomeHeader.tsx | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/app/components/Home/HomeFooter.tsx b/app/components/Home/HomeFooter.tsx index ff0674e..3f4efd2 100644 --- a/app/components/Home/HomeFooter.tsx +++ b/app/components/Home/HomeFooter.tsx @@ -2,6 +2,7 @@ import { DiscordIcon } from "../Icons/DiscordIcon"; import { EmailIcon } from "../Icons/EmailIcon"; import { GithubIcon } from "../Icons/GithubIcon"; import { Logo } from "../Icons/Logo"; +import { TwitterIcon } from "../Icons/TwitterIcon"; export type HomeFooterProps = { maxWidth?: string; @@ -36,6 +37,11 @@ export function HomeFooter({ maxWidth = "1150px" }: HomeFooterProps) { +
  • + + + +
  • diff --git a/app/components/Home/HomeHeader.tsx b/app/components/Home/HomeHeader.tsx index eb7c4be..5e0ea18 100644 --- a/app/components/Home/HomeHeader.tsx +++ b/app/components/Home/HomeHeader.tsx @@ -1,5 +1,6 @@ import { DiscordIconTransparent } from "../Icons/DiscordIconTransparent"; import { EmailIconTransparent } from "../Icons/EmailIconTransparent"; +import { TwitterIcon } from "../Icons/TwitterIcon"; import { Logo } from "../Icons/Logo"; import { NewDocument } from "../NewDocument"; import { GithubStar } from "../UI/GithubStar"; @@ -45,6 +46,11 @@ export function HomeHeader() { +
  • + + + +
  • );