forked from AOSSIE-Org/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
these issues are now solved please visit can evaulate the changes
- Loading branch information
1 parent
bf09236
commit a07d713
Showing
5 changed files
with
55 additions
and
33 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import Link from 'next/link' | ||
|
||
import { Container } from '@/components/Container' | ||
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' | ||
import { faEnvelope } from '@fortawesome/free-solid-svg-icons' | ||
import { faDiscord, faGithub, faGitlab, faTwitter } from '@fortawesome/free-brands-svg-icons' | ||
import { faDiscord, faGithub, faGitlab } from '@fortawesome/free-brands-svg-icons' | ||
import { faXTwitter } from '@fortawesome/free-brands-svg-icons' // Import faXTwitter | ||
|
||
function NavLink({ href, children }) { | ||
return ( | ||
|
@@ -33,20 +33,20 @@ export function Footer() { | |
© 2016-2023 AOSSIE. All rights reserved. | ||
</p> | ||
<div className="flex gap-6"> | ||
<Link aria-label="Contact by Mail" className=' text-zinc-400 hover:text-[#00843D] dark:text-zinc-400 dark:hover:text-yellow-400 transition' href='mailto:[email protected]'> | ||
<FontAwesomeIcon icon={faEnvelope} size='xl' /> | ||
<Link aria-label="Contact by Mail" className="text-zinc-400 hover:text-[#00843D] dark:text-zinc-400 dark:hover:text-yellow-400 transition" href="mailto:[email protected]"> | ||
<FontAwesomeIcon icon={faEnvelope} size="xl" /> | ||
</Link> | ||
<Link aria-label="Follow on GitLab" className=' text-zinc-400 hover:text-[#00843D] dark:text-zinc-400 dark:hover:text-yellow-400 transition' href='https://gitlab.com/aossie'> | ||
<FontAwesomeIcon icon={faGitlab} size='xl' /> | ||
<Link aria-label="Follow on GitLab" className="text-zinc-400 hover:text-[#00843D] dark:text-zinc-400 dark:hover:text-yellow-400 transition" href="https://gitlab.com/aossie"> | ||
<FontAwesomeIcon icon={faGitlab} size="xl" /> | ||
</Link> | ||
<Link aria-label="Follow on GitHub" className=' text-zinc-400 hover:text-[#00843D] dark:text-zinc-400 dark:hover:text-yellow-400 transition' href='https://github.com/AOSSIE-Org'> | ||
<FontAwesomeIcon icon={faGithub} size='xl' /> | ||
<Link aria-label="Follow on GitHub" className="text-zinc-400 hover:text-[#00843D] dark:text-zinc-400 dark:hover:text-yellow-400 transition" href="https://github.com/AOSSIE-Org"> | ||
<FontAwesomeIcon icon={faGithub} size="xl" /> | ||
</Link> | ||
<Link aria-label="Join on Discord" className=' text-zinc-400 hover:text-[#00843D] dark:text-zinc-400 dark:hover:text-yellow-400 transition' href='https://discord.com/invite/6mFZ2S846n'> | ||
<FontAwesomeIcon icon={faDiscord} size='xl' /> | ||
<Link aria-label="Join on Discord" className="text-zinc-400 hover:text-[#00843D] dark:text-zinc-400 dark:hover:text-yellow-400 transition" href="https://discord.com/invite/6mFZ2S846n"> | ||
<FontAwesomeIcon icon={faDiscord} size="xl" /> | ||
</Link> | ||
<Link aria-label="Follow on Twitter" className=' text-zinc-400 hover:text-[#00843D] dark:text-zinc-400 dark:hover:text-yellow-400 transition' href='https://twitter.com/aossie_org'> | ||
<FontAwesomeIcon icon={faTwitter} size='xl' /> | ||
<Link aria-label="Follow on X" className="text-zinc-400 hover:text-[#00843D] dark:text-zinc-400 dark:hover:text-yellow-400 transition" href="https://x.com/aossie_org"> | ||
<FontAwesomeIcon icon={faXTwitter} size="xl" /> {/* Use faXTwitter here */} | ||
</Link> | ||
</div> | ||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters