Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions frontend/public/assets/merch-store-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions frontend/src/components/Hamburger.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ export default function Hamburger() {
<li className="py-2 text-lg">
<Link href={'./contact-us'}>Contact Us</Link>
</li>
<li className="py-2 text-lg">
<a target="_blank" href="https://csesoc-merch.square.site/">Merch Store</a>
</li>
</ul>
</motion.div>
)}
Expand Down
9 changes: 9 additions & 0 deletions frontend/src/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,15 @@ const Navbar = () => {
<Link href="/contact-us">
<div className="text-xl">{'//'} contact us</div>
</Link>
<a target="_blank" href="https://csesoc-merch.square.site/" className='flex'>
<Image
src="/assets/merch-store-icon.svg"
alt="Merchandise Store Icon"
width={29}
height={29}
draggable={false}
/>
</a>
</div>
<div className="md:hidden xl:hidden lg:hidden text-right font-bold block">
<Hamburger />
Expand Down