feat: match calendar designs & add functionality (#176)
* feat: match calendar designs * refactor: update breakpoints
This commit is contained in:
33
src/views/components/calendar/CalendarFooter.tsx
Normal file
33
src/views/components/calendar/CalendarFooter.tsx
Normal file
@@ -0,0 +1,33 @@
|
||||
import React from 'react';
|
||||
|
||||
import DiscordIcon from '~icons/ri/discord-line';
|
||||
import GithubIcon from '~icons/ri/github-fill';
|
||||
import InstagramIcon from '~icons/ri/instagram-line';
|
||||
|
||||
import Link from '../common/Link/Link';
|
||||
|
||||
/**
|
||||
* The footer section of the calendar's sidebar
|
||||
* @returns
|
||||
*/
|
||||
export default function CalendarFooter(): JSX.Element {
|
||||
return (
|
||||
<footer className='min-w-full w-0 space-y-2'>
|
||||
<div className='flex gap-2'>
|
||||
<Link className='linkanimate' href='#'>
|
||||
<InstagramIcon className='h-6 w-6' />
|
||||
</Link>
|
||||
<Link className='linkanimate' href='#'>
|
||||
<DiscordIcon className='h-6 w-6' />
|
||||
</Link>
|
||||
<Link className='linkanimate' href='#'>
|
||||
<GithubIcon className='h-6 w-6' />
|
||||
</Link>
|
||||
</div>
|
||||
<p className='text-2.5 text-ut-concrete font-light tracking-wide'>
|
||||
UT Registration Plus is a project under Longhorn Developers, a student-led organization aimed at
|
||||
addressing issues at UT Austin.
|
||||
</p>
|
||||
</footer>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user