Skip to content

Commit

Permalink
Added early bird prices
Browse files Browse the repository at this point in the history
  • Loading branch information
AugustPaulsrud committed Jun 10, 2024
1 parent f9876e7 commit 4d0cdc6
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions src/app/exhibitor/packages/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export default async function Packages() {
</div>
<div className="mt-10 flex flex-col">
<div className="mt-2 flex flex-col-reverse justify-stretch gap-10 md:flex-row">
<div className="relative flex min-w-48 flex-1 flex-col rounded-lg bg-orange-950 p-5 pb-20">
<div className="relative flex min-w-48 flex-1 flex-col rounded-lg bg-orange-950 p-5 pb-32">
<h3 className="font-lato text-2xl text-orange-500">Bronze</h3>
<ul className="mt-2 font-lato text-orange-600">
<li className="my-2">Host</li>
Expand All @@ -76,11 +76,14 @@ export default async function Packages() {
<li className="my-2">Armada transport</li>
</ul>
<div className="absolute bottom-4">
<p className="text-sm">Early bird price:</p>
<p>46 000 SEK*</p>
<p className="text-sm">Final registration price:</p>
<p>48 000 SEK*</p>
</div>
{/* <p className="absolute bottom-4">46 000 SEK*</p> */}
</div>
<div className="relative flex min-w-48 flex-1 flex-col rounded-lg bg-zinc-800 p-5 pb-20">
<div className="relative flex min-w-48 flex-1 flex-col rounded-lg bg-zinc-800 p-5 pb-32">
<h3 className="font-lato text-2xl text-zinc-400">Silver</h3>
<ul className="mt-2 font-lato text-zinc-500">
<li className="my-2">Everything from bronze package</li>
Expand All @@ -94,11 +97,14 @@ export default async function Packages() {
</li>
</ul>
<div className="absolute bottom-4">
<p className="text-sm">Early bird price:</p>
<p>71 500 SEK*</p>
<p className="text-sm">Final registration price:</p>
<p>75 000 SEK*</p>
</div>
{/* <p className="absolute bottom-4">71 500 SEK*</p> */}
</div>
<div className="relative flex min-w-48 flex-1 flex-col rounded-lg bg-yellow-800 p-5 pb-20">
<div className="relative flex min-w-48 flex-1 flex-col rounded-lg bg-yellow-800 p-5 pb-32">
<h3 className="font-lato text-2xl text-yellow-400">Gold</h3>
<ul className="mt-2 font-lato text-yellow-500">
<li className="my-2">Everything from silver package</li>
Expand All @@ -116,6 +122,9 @@ export default async function Packages() {
</li>
</ul>
<div className="absolute bottom-4">
<p className="text-sm">Early bird price:</p>
<p>114 500 SEK*</p>
<p className="text-sm">Final registration price:</p>
<p>116 000 SEK*</p>
</div>
{/* <p className="absolute bottom-4">108 500 SEK*</p> */}
Expand Down

0 comments on commit 4d0cdc6

Please sign in to comment.