From 81e42089fca331d05ad7c55c6bd52adb52950421 Mon Sep 17 00:00:00 2001 From: Sergio Serrano Date: Fri, 12 Dec 2025 12:55:13 -0400 Subject: [PATCH] Move the status page to the footer --- app/_components/footer.tsx | 5 +++++ app/en/home/_meta.tsx | 6 +----- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/app/_components/footer.tsx b/app/_components/footer.tsx index a9f6cbb88..31fd9efcf 100644 --- a/app/_components/footer.tsx +++ b/app/_components/footer.tsx @@ -110,6 +110,11 @@ const Footer: React.FC = () => { title: "GitHub Container Registry", external: true, }, + { + url: "https://status.arcade.dev/", + title: "Status", + external: true, + }, ]; const resources: Resource[] = [ diff --git a/app/en/home/_meta.tsx b/app/en/home/_meta.tsx index ff7c4d069..f82d14bad 100644 --- a/app/en/home/_meta.tsx +++ b/app/en/home/_meta.tsx @@ -1,4 +1,4 @@ -import { BadgeHelp, Globe, HeartPulse, Home, Shield } from "lucide-react"; +import { BadgeHelp, Globe, Home, Shield } from "lucide-react"; import type { MetaRecord } from "nextra"; function TitleWithIcon({ @@ -151,10 +151,6 @@ export const meta: MetaRecord = { security: { title: Security, }, - status: { - title: Status, - href: "https://status.arcade.dev/", - }, }; export default meta;