From 3d20bbfdb31bfb906f1b6d0c22c89eeeffe83f88 Mon Sep 17 00:00:00 2001 From: Abiodun001-world Date: Tue, 28 Oct 2025 20:46:46 +0100 Subject: [PATCH] Fix: add light mode support to footer component --- components/Footer.tsx | 59 ++++++++++++++++++------------------------- 1 file changed, 24 insertions(+), 35 deletions(-) diff --git a/components/Footer.tsx b/components/Footer.tsx index 4bffbcc..91daa6e 100644 --- a/components/Footer.tsx +++ b/components/Footer.tsx @@ -12,7 +12,7 @@ const Footer: React.FC = () => { { name: 'Integrations', href: '#integrations' }, ], resources: [ - { name: 'Documentation', href: 'https://opsimate.vercel.app/#integrations' }, // Placeholder - will link to actual docs + { name: 'Documentation', href: 'https://opsimate.vercel.app/#integrations' }, ], opensource: [ { name: 'GitHub Repository', href: 'https://github.com/OpsiMate/OpsiMate' }, @@ -25,29 +25,29 @@ const Footer: React.FC = () => { const socialLinks = [ { name: 'GitHub', - href: 'https://github.com/OpsiMate/OpsiMate', // From documentation + href: 'https://github.com/OpsiMate/OpsiMate', icon: Github }, { name: 'Slack Community', - href: 'https://join.slack.com/t/opsimate/shared_invite/zt-39bq3x6et-NrVCZzH7xuBGIXmOjJM7gA', // From documentation + href: 'https://join.slack.com/t/opsimate/shared_invite/zt-39bq3x6et-NrVCZzH7xuBGIXmOjJM7gA', icon: Slack }, { name: 'Email', - href: 'mailto:idan.lut@gmail.com', // Placeholder + href: 'mailto:idan.lut@gmail.com', icon: Mail }, ]; return ( -