diff --git a/src/components/FAQ/Faq.module.css b/src/components/FAQ/Faq.module.css
index 3dc375b..2a5ba7f 100644
--- a/src/components/FAQ/Faq.module.css
+++ b/src/components/FAQ/Faq.module.css
@@ -9,6 +9,7 @@
background-position: top left;
position: relative;
color: var(--mantine-color-black);
+ background: linear-gradient(90deg, #272626 22%, #25424a 68%, #37616c 84%);
}
.title {
diff --git a/src/components/Footer/Footer.jsx b/src/components/Footer/Footer.jsx
index a751c2f..e32a659 100644
--- a/src/components/Footer/Footer.jsx
+++ b/src/components/Footer/Footer.jsx
@@ -1,27 +1,69 @@
-import { Container, Group, ActionIcon, rem } from '@mantine/core';
-import { IconBrandTwitter, IconBrandYoutube, IconBrandInstagram } from '@tabler/icons-react';
-
+import { Anchor, Group, ActionIcon, rem } from '@mantine/core';
+import { IconBrandTwitter, IconBrandYoutube, IconBrandInstagram, IconBrandLinkedin, IconBrandGithub } from '@tabler/icons-react';
import classes from './Footer.module.css';
+import logo from "/src/assets/logo1.jpg";
+const links = [
+ { link: '#', label: 'Contact' },
+ { link: '#', label: 'Privacy' },
+ { link: '#', label: 'Blog' },
+ { link: 'https://zeroday-alliance.pages.dev/', label: 'Website' }, // Added website link
+ { link: '#', label: 'Careers' },
+];
const Footer = () => {
+ const items = links.map((link) => (
+