Skip to content

Commit

Permalink
Added buttons, placeholder txt to "for companies"
Browse files Browse the repository at this point in the history
  • Loading branch information
AugustPaulsrud committed Feb 27, 2024
1 parent 6e8d1a9 commit 8f0892c
Showing 1 changed file with 27 additions and 6 deletions.
33 changes: 27 additions & 6 deletions src/app/exhibitor/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,33 @@ export default function ForExhibitorsPage() {
<Page.Background withIndents>
<Page.Boundary maxWidth={600}>
<Page.Header tier="primary">For Exhibitors</Page.Header>
<div className="h-5" />
<a href="https://register.armada.nu/register">
<Button>Signup to be part of armada</Button>
</a>
<p className="leading-8 text-stone-400">text here</p>
<p>timeline here</p>
<div className="h-4" />

<div className="flex flex-col space-y-4">
<div className="mt-2 flex flex-row flex-wrap justify-stretch gap-4 ">
<a href="https://register.armada.nu/register">
<Button>Signup to armada</Button>
</a>
<a href="/exhibitor/packages">
<Button variant={"secondary"} className="dark:bg-liqorice-700">
Packages
</Button>
</a>
<a href="/exhibitor/timeline">
<Button variant={"secondary"} className="dark:bg-liqorice-700">
Timeline
</Button>
</a>
<a href="/exhibitor/why_kth">
<Button variant={"secondary"} className="dark:bg-liqorice-700">
Why KTH
</Button>
</a>
</div>
</div>
<div className="mt-4">
<p>text here</p>
</div>
</Page.Boundary>
</Page.Background>
)
Expand Down

0 comments on commit 8f0892c

Please sign in to comment.