Skip to content

Commit faa3c74

Browse files
authored
Move the status page link from the sidebar to the footer (#603)
Move the status page to the footer
1 parent 534efca commit faa3c74

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

app/_components/footer.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,11 @@ const Footer: React.FC = () => {
110110
title: "GitHub Container Registry",
111111
external: true,
112112
},
113+
{
114+
url: "https://status.arcade.dev/",
115+
title: "Status",
116+
external: true,
117+
},
113118
];
114119

115120
const resources: Resource[] = [

app/en/home/_meta.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { BadgeHelp, Globe, HeartPulse, Home, Shield } from "lucide-react";
1+
import { BadgeHelp, Globe, Home, Shield } from "lucide-react";
22
import type { MetaRecord } from "nextra";
33

44
function TitleWithIcon({
@@ -151,10 +151,6 @@ export const meta: MetaRecord = {
151151
security: {
152152
title: <TitleWithIcon icon={Shield}>Security</TitleWithIcon>,
153153
},
154-
status: {
155-
title: <TitleWithIcon icon={HeartPulse}>Status</TitleWithIcon>,
156-
href: "https://status.arcade.dev/",
157-
},
158154
};
159155

160156
export default meta;

0 commit comments

Comments
 (0)