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.
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -33,19 +33,19 @@ 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]'> | ||
<Link aria-label="Contact by Mail" target="_blank" rel="noopener noreferrer" 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'> | ||
<Link aria-label="Follow on GitLab" target="_blank" rel="noopener noreferrer" 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'> | ||
<Link aria-label="Follow on GitHub" target="_blank" rel="noopener noreferrer" 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'> | ||
<Link aria-label="Join on Discord" target="_blank" rel="noopener noreferrer" 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'> | ||
<Link aria-label="Follow on Twitter" target="_blank" rel="noopener noreferrer" 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> | ||
</div> | ||
|