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 ( - + ); +}