feat: updated calendar page and recruitment banner links (#219)

This commit is contained in:
Samuel Gunter
2024-05-20 20:31:09 -07:00
committed by GitHub
parent e3c2da36df
commit a2303ee35f
3 changed files with 14 additions and 14 deletions

View File

@@ -14,13 +14,13 @@ export default function CalendarFooter(): JSX.Element {
return (
<footer className='min-w-full w-0 pl-4.5 space-y-2'>
<div className='flex gap-2'>
<Link className='linkanimate' href='#'>
<Link className='linkanimate' href='https://www.instagram.com/longhorndevelopers'>
<InstagramIcon className='h-6 w-6' />
</Link>
<Link className='linkanimate' href='https://discord.gg/bVh9g6VFwB'>
<Link className='linkanimate' href='https://discord.gg/7pQDBGdmb7'>
<DiscordIcon className='h-6 w-6' />
</Link>
<Link className='linkanimate' href='https://github.com/Longhorn-Developers/UT-Registration-Plus'>
<Link className='linkanimate' href='https://github.com/Longhorn-Developers'>
<GithubIcon className='h-6 w-6' />
</Link>
</div>

View File

@@ -14,17 +14,17 @@ interface LinkItem {
}
const links: LinkItem[] = [
{
text: 'Feedback Form',
url: '#',
},
{
text: 'Apply to Longhorn Developers',
url: '#',
},
// {
// text: 'Feedback Form',
// url: '#',
// },
// {
// text: 'Apply to Longhorn Developers',
// url: '#',
// },
{
text: 'Become a Beta Tester',
url: 'https://discord.gg/bVh9g6VFwB',
url: 'https://forms.gle/Y9dmQAb1yzW5PRg48',
},
];