Skip to content

Commit

Permalink
fix: Home page button with map
Browse files Browse the repository at this point in the history
  • Loading branch information
hampfh committed Nov 18, 2024
1 parent e26f164 commit 1f217f9
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,16 @@ export default async function HomePage() {
</>
) : (
<>
<Link href="/student/map">
<Button className="flex gap-2">
<MapIcon size={15} /> Visit the map
</Button>
</Link>
<Link href="/student/events">
<Button>Signup for events</Button>
<Button variant={"secondary"} className="flex gap-2">
Signup for events
<ArrowRightIcon size={15} />
</Button>
</Link>
{fair_start < today && today < fair_end && (
<Link href="/students/map">
Expand Down

0 comments on commit 1f217f9

Please sign in to comment.