-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #102 from armada-ths/erik/add-footer
Add footer to layout
- Loading branch information
Showing
2 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
import { InstagramIcon, LinkedinIcon, Music2Icon } from "lucide-react" | ||
|
||
export function Footer() { | ||
return ( | ||
/* IF WIDTH < 768, SET TO VERTICAL, OTHERWISE KEEP HORIZONTAL */ | ||
<div className="w-100 flex flex-col items-center justify-center md:flex-row md:items-start"> | ||
<hr className="static mt-2 h-1 w-2/3 rounded border-0 bg-slate-500 bg-opacity-30 md:absolute" /> | ||
<div className="m-5 mb-3 mt-7 w-1/4 place-items-center text-center md:place-items-start md:text-start"> | ||
<p> | ||
<b>Follow us on:</b> | ||
</p> | ||
<a | ||
href="https://www.linkedin.com/company/armada" | ||
className="flex space-x-1"> | ||
<LinkedinIcon size="20" /> | ||
<p className="mb-0">LinkedIn</p> | ||
</a> | ||
<a | ||
href="https://www.instagram.com/thsarmada/" | ||
className="flex space-x-1"> | ||
<InstagramIcon size="20" /> | ||
<p>Instagram</p> | ||
</a> | ||
<a href="https://www.tiktok.com/@ths.armada" className="flex space-x-1"> | ||
<Music2Icon size="20" /> | ||
<p>TikTok</p> | ||
</a> | ||
</div> | ||
|
||
<div className="m-5 mb-3 mt-7 w-1/4 place-items-center text-center md:place-items-start md:text-left"> | ||
<p> | ||
<b>STUDENTS</b> | ||
</p> | ||
<a href="/student/exhibitors">Exhibitors</a> | ||
<br /> | ||
<a href="/student/recruitment">Recruitment</a> | ||
<br /> | ||
<a href="/student/events">Events</a> | ||
</div> | ||
<div className="m-5 mb-3 mt-7 w-1/4 place-items-center text-center md:place-items-start md:text-left"> | ||
<p> | ||
<b>EXHIBITORS</b> | ||
</p> | ||
<a href="https://register.armada.nu/register">Registration</a> | ||
<br /> | ||
<a href="/exhibitor/packages">Packages</a> | ||
<br /> | ||
<a href="/exhibitor">Why Armada</a> | ||
<br /> | ||
<a href="/exhibitor/timeline">Timeline</a> | ||
</div> | ||
|
||
<div className="m-5 mb-3 mt-7 w-1/4 place-items-center text-center md:place-items-start md:text-left"> | ||
<p> | ||
<b>ARMADA</b> | ||
</p> | ||
<p> | ||
<i>Drottning Kristinas väg 15</i> | ||
</p> | ||
<p> | ||
<i>114 28, Stockholm</i> | ||
</p> | ||
</div> | ||
</div> | ||
) | ||
} |