From 244b2dfa0f4cf5019ce092e4a352a3583efb79da Mon Sep 17 00:00:00 2001 From: "marthajerushamarumudi7@gmail.com" <144675544+Jerusha547@users.noreply.github.com> Date: Thu, 21 May 2026 15:07:12 +0530 Subject: [PATCH] Update contribute footer link --- src/components/Footer.jsx | 189 +++++++++++++++++++++----------------- 1 file changed, 103 insertions(+), 86 deletions(-) diff --git a/src/components/Footer.jsx b/src/components/Footer.jsx index 1145385..d1b11a7 100644 --- a/src/components/Footer.jsx +++ b/src/components/Footer.jsx @@ -1,104 +1,121 @@ -import { Link } from 'react-router-dom' +import { Link } from "react-router-dom"; const links = { Learn: [ - { label: 'Start Here', href: '#' }, - { label: 'Resources', href: '#' }, - { label: 'AI Concepts', href: '#' }, - { label: 'Blog', href: '#' }, + { label: "Start Here", href: "#" }, + { label: "Resources", href: "#" }, + { label: "AI Concepts", href: "#" }, + { label: "Blog", href: "#" }, ], Community: [ - { label: 'Mentors', href: '#' }, - { label: 'Summer of AI 2026', href: '#' }, - { label: 'Contribute', href: '#' }, - { label: 'GitHub', href: 'https://github.com/HerStack-org', external: true }, + { label: "Mentors", href: "#" }, + { label: "Summer of AI 2026", href: "#" }, + { label: "Contribute", href: "#contribute" }, + { + label: "GitHub", + href: "https://github.com/HerStack-org", + external: true, + }, ], About: [ - { label: 'Our Mission', href: '/our-mission', internal: true }, - { label: 'GirlScript Affiliation', href: '#' }, - { label: 'Contact', href: '#' }, - { label: 'Nominate a Mentor', href: '#' }, + { label: "Our Mission", href: "/our-mission", internal: true }, + { label: "GirlScript Affiliation", href: "#" }, + { label: "Contact", href: "#" }, + { label: "Nominate a Mentor", href: "#" }, ], -} +}; const linkStyle = { - color: 'rgba(255,255,255,0.55)', -} + color: "rgba(255,255,255,0.55)", +}; export default function Footer() { return ( - + ); +}