Skip to content

Commit

Permalink
feat: Add TikTok Link (#207)
Browse files Browse the repository at this point in the history
  • Loading branch information
shxhid01 authored Oct 29, 2024
1 parent ce6a868 commit 1936ed8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/app/contact/Contact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ const LINK_BORDER_COLOURS = {
Email: 'yellow',
GitHub: 'orange',
Instagram: 'purple',
Facebook: 'yellow',
Discord: 'orange',
LinkedIn: 'purple',
TikTok: 'yellow',
Facebook: 'orange',
Discord: 'purple',
LinkedIn: 'yellow',
} as const satisfies Record<(typeof LINKS)[number]['name'], Colour>;

export default function Contact({ className }: { className?: string }) {
Expand Down
2 changes: 2 additions & 0 deletions src/data/links.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ import {
FaGithub,
FaInstagram,
FaLinkedin,
FaTiktok,
} from 'react-icons/fa';

export const LINKS = [
{ name: 'Email', link: 'mailto:[email protected]', icon: FaEnvelope },
{ name: 'GitHub', link: 'https://github.com/compsci-adl', icon: FaGithub },
{ name: 'Instagram', link: 'https://www.instagram.com/csclub.adl/', icon: FaInstagram },
{ name: 'TikTok', link: 'https://www.tiktok.com/@csclub.adl', icon: FaTiktok },
{ name: 'Facebook', link: 'https://www.facebook.com/compsci.adl/', icon: FaFacebook },
{ name: 'Discord', link: 'https://discord.gg/UjvVxHA', icon: FaDiscord },
{ name: 'LinkedIn', link: 'https://www.linkedin.com/company/compsci-adl/', icon: FaLinkedin },
Expand Down

0 comments on commit 1936ed8

Please sign in to comment.