Skip to content

Commit

Permalink
✨ Add Warwick SU and Warwick Presents logo to footer (#23)
Browse files Browse the repository at this point in the history
Co-authored-by: Josh Heng <[email protected]>
  • Loading branch information
adamskrz and JoshHeng authored May 10, 2024
1 parent dda68e1 commit 429a9b4
Show file tree
Hide file tree
Showing 4 changed files with 82 additions and 2 deletions.
23 changes: 21 additions & 2 deletions src/app/components/footer.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import Image from 'next/image';
import warwickTechCrewLogo from '@/assets/organisations/warwick-tech-crew.png';
import warwickSuLogo from '@/assets/organisations/warwick-su.svg';
import warwickPresentsLogo from '@/assets/organisations/warwick-presents.png';

export default function Footer() {
return (
Expand All @@ -10,12 +12,29 @@ export default function Footer() {
WSAF would not be possible without the generous support of our
delivery partners:
</p>
<div className="flex justify-center gap-4 mt-1">
<div className="flex justify-center items-center gap-4 mt-1">
<a href="https://www.warwicktechcrew.co.uk/" target="_blank">
<Image
src={warwickTechCrewLogo}
alt="Warwick Tech Crew logo"
className="h-16 w-auto"
className="h-12 sm:h-16 w-auto"
/>
</a>
<a
href="https://warwick.ac.uk/students/warwickpresents/"
target="_blank"
>
<Image
src={warwickPresentsLogo}
alt="Warwick Presents logo"
className="h-8 sm:h-10 w-auto"
/>
</a>
<a href="https://www.warwicksu.com/" target="_blank">
<Image
src={warwickSuLogo}
alt="Warwick SU logo"
className="h-9 sm:h-14 w-auto"
/>
</a>
</div>
Expand Down
Binary file added src/assets/organisations/warwick-presents.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/assets/organisations/warwick-su.png
Binary file not shown.
61 changes: 61 additions & 0 deletions src/assets/organisations/warwick-su.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 429a9b4

Please sign in to comment.