diff --git a/.env b/.env
index 3b3249794..42bf5f2a3 100644
--- a/.env
+++ b/.env
@@ -44,3 +44,5 @@ GC_BUCKET_NAME=openbeta-staging
# A comma-separated-list of test area IDs
# to exclude from the feed
NEXT_PUBLIC_TEST_AREA_IDS=18c5dd5c-8186-50b6-8a60-ae2948c548d1
+
+DISCORD_INVITE=https://discord.gg/npjkrqATkD
\ No newline at end of file
diff --git a/src/app/components/DesktopHeader.tsx b/src/app/components/DesktopHeader.tsx
index cb48314be..c3695d0c9 100644
--- a/src/app/components/DesktopHeader.tsx
+++ b/src/app/components/DesktopHeader.tsx
@@ -12,7 +12,7 @@ export const DesktopHeader: React.FC = () => {
const navListDefault: NavMenuItemProps[] = [
{
- to: 'https://discord.gg/ptpnWWNkJx',
+ to: process.env.DISCORD_INVITE ?? '',
label: 'Discord'
},
{
@@ -57,7 +57,7 @@ export const DesktopHeader: React.FC = () => {
case 'loading':
nav = (
<>
-
+
>
)
break
@@ -66,11 +66,11 @@ export const DesktopHeader: React.FC = () => {
}
return (
-
+
)
}
diff --git a/src/app/components/PageFooter.tsx b/src/app/components/PageFooter.tsx
new file mode 100644
index 000000000..fd843d848
--- /dev/null
+++ b/src/app/components/PageFooter.tsx
@@ -0,0 +1,42 @@
+import { Logo, LogoSize } from 'app/header'
+/**
+ * Page footer
+ */
+export const PageFooter: React.FC = () => {
+ return (
+
+ )
+}
diff --git a/src/app/components/ProfileNavButton.tsx b/src/app/components/ProfileNavButton.tsx
index 950a0bc2d..68698331b 100644
--- a/src/app/components/ProfileNavButton.tsx
+++ b/src/app/components/ProfileNavButton.tsx
@@ -30,7 +30,7 @@ export default function ProfileNavButton ({ isMobile = true }: ProfileNavButtonP
-
-
+