From 2bb1b2fd9c1e32c582bd2da132aa65d12442ea2d Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Mon, 2 Jan 2023 20:06:31 +0800 Subject: [PATCH 1/2] Update the year in the copyright footer --- packages/web/components/templates/landing/LandingFooter.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web/components/templates/landing/LandingFooter.tsx b/packages/web/components/templates/landing/LandingFooter.tsx index 29477228e..49ec61f3e 100644 --- a/packages/web/components/templates/landing/LandingFooter.tsx +++ b/packages/web/components/templates/landing/LandingFooter.tsx @@ -107,7 +107,7 @@ export function LandingFooter(): JSX.Element { - © 2022 Omnivore + © 2023 Omnivore From d85f3b1dd355669e114b4e3c7c62b673a3a1a1e8 Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Tue, 3 Jan 2023 09:50:59 +0800 Subject: [PATCH 2/2] Use the CTA colour for the contact email address --- packages/web/components/templates/landing/LandingFooter.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/web/components/templates/landing/LandingFooter.tsx b/packages/web/components/templates/landing/LandingFooter.tsx index 49ec61f3e..41b9b614a 100644 --- a/packages/web/components/templates/landing/LandingFooter.tsx +++ b/packages/web/components/templates/landing/LandingFooter.tsx @@ -1,6 +1,7 @@ import Link from 'next/link' import { Box, HStack } from '../../elements/LayoutPrimitives' import { GithubLogo, DiscordLogo, TwitterLogo } from 'phosphor-react' +import { theme } from '../../tokens/stitches.config' const containerStyles = { padding: '5vw', @@ -65,6 +66,9 @@ const supportStyles = { '@mdDown': { fontSize: '3vw', }, + a: { + color: theme.colors.omnivoreCtaYellow.toString(), + }, } const imageStyles = {