diff --git a/gsecure/components/ui/common/Footer.js b/gsecure/components/ui/common/Footer.js
index 256cab7..5a7263d 100644
--- a/gsecure/components/ui/common/Footer.js
+++ b/gsecure/components/ui/common/Footer.js
@@ -34,14 +34,19 @@ function Footer() {
Product
- {['Vault', 'Generator', 'Analytics', 'API'].map((item) => (
- -
+ {[
+ { label: 'Vault', href: '/vault' },
+ { label: 'Generator', href: '/features/generate-password' },
+ { label: 'Analytics', href: '/features' },
+ { label: 'API', href: '/features' }
+ ].map((item) => (
+
-
- {item}
+ {item.label}
))}
@@ -52,14 +57,19 @@ function Footer() {
Security
- {['Audit Report', 'Encryption', 'Compliance', 'Privacy'].map((item) => (
- -
+ {[
+ { label: 'Audit Report', href: '/privacy' },
+ { label: 'Encryption', href: '/privacy' },
+ { label: 'Compliance', href: '/terms' },
+ { label: 'Privacy', href: '/privacy' }
+ ].map((item) => (
+
-
- {item}
+ {item.label}
))}