Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Updated broken link on the about page for improved navigation and user experience. #335

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 29 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 13 additions & 8 deletions src/components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Container } from '@/components/Container'
import { Logo } from '@/components/Logo'
import { NavLink } from '@/components/NavLink'

import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { faXTwitter, faDiscord, faGithub, faLinkedinIn } from '@fortawesome/free-brands-svg-icons'

import WeMakeDevs from '@/images/logos/WeMakeDevs.jpg'
Expand All @@ -25,8 +25,8 @@ export function Footer() {
>
{[
[
{ name: 'WeMakeDevs', logo: WeMakeDevs , href: 'https://wemakedevs.org/', title: 'WeMakeDevs'},
{ name: '4C', logo: ContentCreators4Cs , href: ' https://www.4c.rocks/', title: '4C'},
{ name: 'WeMakeDevs', logo: WeMakeDevs, href: 'https://wemakedevs.org/', title: 'WeMakeDevs' },
{ name: '4C', logo: ContentCreators4Cs, href: ' https://www.4c.rocks/', title: '4C' },
],
].map((group, groupIndex) => (
<li key={groupIndex}>
Expand All @@ -38,10 +38,10 @@ export function Footer() {
<li key={company.name} className="flex">
<Link href={company.href} target="_blank" title={company.title}>
<Image
src={company.logo}
alt={company.name}
unoptimized
width="50"
src={company.logo}
alt={company.name}
unoptimized
width="50"
/>
</Link>
</li>
Expand All @@ -52,7 +52,12 @@ export function Footer() {
</ul>
</div>
<div className="py-16">
<Logo className="mx-auto h-10 w-auto" />

<Link href="/" aria-label="Home">
<Logo className="mx-auto h-10 w-auto" />
</Link>


Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change

<nav className="mt-10 text-sm" aria-label="quick links">
<div className="-my-1 flex justify-center gap-x-6">
<NavLink href="#projects">Projects</NavLink>
Expand Down