From 67de9cee069491b10c1d2d65c1cd323395d81647 Mon Sep 17 00:00:00 2001 From: vishva Date: Tue, 7 Jul 2026 14:30:12 +0530 Subject: [PATCH 1/3] feat: improve footer links --- frontend/src/routes/index.tsx | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/frontend/src/routes/index.tsx b/frontend/src/routes/index.tsx index 2d84d49f..7c61dc1b 100644 --- a/frontend/src/routes/index.tsx +++ b/frontend/src/routes/index.tsx @@ -291,9 +291,20 @@ function Landing() { © {new Date().getFullYear()}
- {["Privacy", "Security", "Terms", "Status"].map((l) => ( - - {l} + {[ + { label: "GitHub", href: "https://github.com/nensii21/devlink" }, + { label: "Privacy Policy", href: "#" }, + { label: "Terms", href: "#" }, + { label: "Contact", href: "#" }, + ].map((item) => ( + + {item.label} ))}
From b0bd693db0d18ab850d1a702e1bf931f322e8b50 Mon Sep 17 00:00:00 2001 From: vishva Date: Wed, 8 Jul 2026 22:30:55 +0530 Subject: [PATCH 2/3] Improve footer styling and accessibility --- frontend/src/routes/index.tsx | 10 +++++----- frontend/src/styles.css | 1 + 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/frontend/src/routes/index.tsx b/frontend/src/routes/index.tsx index 7c61dc1b..45a303d3 100644 --- a/frontend/src/routes/index.tsx +++ b/frontend/src/routes/index.tsx @@ -283,12 +283,12 @@ function Landing() { -