feat(web): add Footer component to Analytics and Showcase pages

This commit is contained in:
Aman Varshney
2025-07-27 23:58:44 +05:30
parent 52e72c8bfd
commit 4b504cd462
2 changed files with 4 additions and 0 deletions

View File

@@ -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() {
</div>
</div>
</div>
<Footer />
</div>
);
}

View File

@@ -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() {
</div>
</div>
</div>
<Footer />
</main>
);
}