diff --git a/apps/web/src/app/(home)/analytics/page.tsx b/apps/web/src/app/(home)/analytics/page.tsx
index 473f223..a0df8fd 100644
--- a/apps/web/src/app/(home)/analytics/page.tsx
+++ b/apps/web/src/app/(home)/analytics/page.tsx
@@ -25,6 +25,7 @@ import {
ChartTooltipContent,
} from "@/components/ui/chart";
import discordLogo from "@/public/icon/discord.svg";
+import Footer from "../_components/footer";
interface AnalyticsData {
date: string;
@@ -2106,6 +2107,7 @@ export default function AnalyticsPage() {
+
);
}
diff --git a/apps/web/src/app/(home)/showcase/page.tsx b/apps/web/src/app/(home)/showcase/page.tsx
index 364423d..9bed18a 100644
--- a/apps/web/src/app/(home)/showcase/page.tsx
+++ b/apps/web/src/app/(home)/showcase/page.tsx
@@ -2,6 +2,7 @@
import { Terminal } from "lucide-react";
import ShowcaseItem from "./_components/ShowcaseItem";
+import Footer from "../_components/footer";
const showcaseProjects = [
{
@@ -121,6 +122,7 @@ export default function ShowcasePage() {
+
);
}