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() { +
  • + + + +
  • );