diff --git a/src/components/_App/Footer/index.tsx b/src/components/_App/Footer/index.tsx
index fefc89dd..63aa988c 100644
--- a/src/components/_App/Footer/index.tsx
+++ b/src/components/_App/Footer/index.tsx
@@ -232,15 +232,17 @@ const Footer = () => {
{chunkArray(pages.list, 4).map((chunk: PageListItem[]) => (
- {chunk.map((page: PageListItem) => (
-
- {page.title}
-
- ))}
+ {chunk
+ .filter((page: PageListItem) => !page.slug.includes("mobile"))
+ .map((page: PageListItem) => (
+
+ {page.title}
+
+ ))}
))}