Skip to content

Commit 4b504cd

Browse files
feat(web): add Footer component to Analytics and Showcase pages
1 parent 52e72c8 commit 4b504cd

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

apps/web/src/app/(home)/analytics/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ import {
2525
ChartTooltipContent,
2626
} from "@/components/ui/chart";
2727
import discordLogo from "@/public/icon/discord.svg";
28+
import Footer from "../_components/footer";
2829

2930
interface AnalyticsData {
3031
date: string;
@@ -2106,6 +2107,7 @@ export default function AnalyticsPage() {
21062107
</div>
21072108
</div>
21082109
</div>
2110+
<Footer />
21092111
</div>
21102112
);
21112113
}

apps/web/src/app/(home)/showcase/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import { Terminal } from "lucide-react";
44
import ShowcaseItem from "./_components/ShowcaseItem";
5+
import Footer from "../_components/footer";
56

67
const showcaseProjects = [
78
{
@@ -121,6 +122,7 @@ export default function ShowcasePage() {
121122
</div>
122123
</div>
123124
</div>
125+
<Footer />
124126
</main>
125127
);
126128
}

0 commit comments

Comments
 (0)