From 1fd241f64027641b1ff0da59627893722d542bb2 Mon Sep 17 00:00:00 2001 From: DeveloperAmrit Date: Tue, 30 Dec 2025 19:30:28 +0530 Subject: [PATCH] Added footer component modified: components/footer.tsx modified: output/build-manifest.json modified: output/server/middleware-build-manifest.js modified: output/server/pages-manifest.json modified: output/static/development/_buildManifest.js --- components/footer.tsx | 109 +++++++++++++++----- output/build-manifest.json | 15 ++- output/server/middleware-build-manifest.js | 2 +- output/server/pages-manifest.json | 6 +- output/static/development/_buildManifest.js | 2 +- 5 files changed, 106 insertions(+), 28 deletions(-) diff --git a/components/footer.tsx b/components/footer.tsx index b83fd3a..2b8de49 100644 --- a/components/footer.tsx +++ b/components/footer.tsx @@ -1,4 +1,5 @@ import Link from "next/link" +import Image from "next/image" const navigation = [ { @@ -105,32 +106,94 @@ const navigation = [ }, ] +const footerLinks = [ + { name: "Blockchains", href: "/blockchains" }, + { name: "Protocols", href: "/protocols" }, + { name: "Research", href: "/research" }, + { name: "Workshop", href: "https://workshop.stability.nexus" }, + { name: "Hackathon", href: "https://hackathon.stability.nexus" }, + { name: "Articles", href: "https://news.stability.nexus/" }, + { name: "Docs", href: "https://docs.stability.nexus/" }, +] + export default function Footer() { return ( -