Skip to content

Commit 265e56d

Browse files
committed
Add expandable footnotes
1 parent f4bb0c7 commit 265e56d

File tree

1 file changed

+22
-6
lines changed

1 file changed

+22
-6
lines changed

src/routes/sponsorship.jsx

Lines changed: 22 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
import { BiSolidHeartCircle } from 'solid-icons/bi';
22
import PageLayout from '~/components/PageLayout';
33

4+
// Expandable footnote component
5+
function ExpandableFootnote({ number, content }) {
6+
return (
7+
<span class="inline-block">
8+
<details class="inline">
9+
<summary class="inline-block cursor-pointer">
10+
<sup class="text-white hover:text-gray-100">[{number}]</sup>
11+
</summary>
12+
<div class="absolute mt-1 max-w-sm rounded-lg border border-white/10 p-2 text-sm shadow-lg bg-/90 backdrop-blur-md z-50">
13+
{content}
14+
</div>
15+
</details>
16+
</span>
17+
);
18+
}
19+
420
function sponsorLink(tier, amount) {
521
let body = `Please provide at least the following information:
622
- Company Name and Website:
@@ -50,7 +66,7 @@ export default function Sponsorship() {
5066
<li>Linked logo on the website</li>
5167
<li>Linked shout-out or repost from official social media accounts</li>
5268
<li>Possibility to distribute your own stickers/swag/merch at the venue</li>
53-
<li>Tickets: 1+ corporate tickets<a href="#corporate-tickets"><sup>[1]</sup></a></li>
69+
<li>Tickets: 1+ corporate tickets <ExpandableFootnote number="1" content="One corporate ticket per 1024 EUR. Only corporate tickets come with company name/logo recognition on the badge. Corporate tickets can also be bought individually when ticket sales open." /></li>
5470
</ul>
5571
<a href={sponsorLink("Bronze", 1024)} class="inline-block px-4 py-2 bg-white/20 hover:bg-white/30 transition-colors rounded-lg text-white font-medium">
5672
Contact Us
@@ -66,7 +82,7 @@ export default function Sponsorship() {
6682
<li>Shout-out in the opening</li>
6783
<li>Slot on break slideshow (provide a slide in advance)</li>
6884
<li>Possibility to distribute flyers (provide them in advance) to all attendees in bag</li>
69-
<li>Tickets: 2+ corporate tickets<a href="#corporate-tickets"><sup>[1]</sup></a></li>
85+
<li>Tickets: 2+ corporate tickets <ExpandableFootnote number="1" content="One corporate ticket per 1024 EUR. Only corporate tickets come with company name/logo recognition on the badge. Corporate tickets can also be bought individually when ticket sales open." /></li>
7086
</ul>
7187
<a href={sponsorLink("Silver", 2048)} class="inline-block px-4 py-2 bg-white/20 hover:bg-white/30 transition-colors rounded-lg text-white font-medium">
7288
Contact Us
@@ -80,8 +96,8 @@ export default function Sponsorship() {
8096
<ul class="list-disc list-inside space-y-2 mb-4">
8197
<li>Everything from Silver</li>
8298
<li>5 minute lightning talk slot</li>
83-
<li>Dedicated space for a booth<a href="#limited"><sup>[2]</sup></a></li>
84-
<li>Tickets: 4+ corporate tickets<a href="#corporate-tickets"><sup>[1]</sup></a></li>
99+
<li>Dedicated space for a booth <ExpandableFootnote number="2" content="These perks may be limited in availability." /></li>
100+
<li>Tickets: 4+ corporate tickets <ExpandableFootnote number="1" content="One corporate ticket per 1024 EUR. Only corporate tickets come with company name/logo recognition on the badge. Corporate tickets can also be bought individually when ticket sales open." /></li>
85101
</ul>
86102
<a href={sponsorLink("Gold", 4096)} class="inline-block px-4 py-2 bg-white/20 hover:bg-white/30 transition-colors rounded-lg text-white font-medium">
87103
Contact Us
@@ -94,11 +110,11 @@ export default function Sponsorship() {
94110
<p class="text-xl mb-4">8192+ EUR</p>
95111
<ul class="list-disc list-inside space-y-2 mb-4">
96112
<li>Everything from Gold</li>
97-
<li>Logo on some official conference swag<a href="#limited"><sup>[2]</sup></a><a href="#production"><sup>[3]</sup></a></li>
113+
<li>Logo on some official conference swag <ExpandableFootnote number="2" content="These perks may be limited in availability." /> <ExpandableFootnote number="3" content="These perks require production and cannot be guaranteed if too late." /></li>
98114
<li>1 minute presentation slot (provide the slides in advance) in the conference opening</li>
99115
<li>Intro of all recordings show your name/logo</li>
100116
<li>Possibility to distribute items (provide them in advance) to all attendees in bag</li>
101-
<li>Tickets: 8+ corporate tickets<a href="#corporate-tickets"><sup>[1]</sup></a></li>
117+
<li>Tickets: 8+ corporate tickets <ExpandableFootnote number="1" content="One corporate ticket per 1024 EUR. Only corporate tickets come with company name/logo recognition on the badge. Corporate tickets can also be bought individually when ticket sales open." /></li>
102118
</ul>
103119
<a href={sponsorLink("Diamond", 8192)} class="inline-block px-4 py-2 bg-white/20 hover:bg-white/30 transition-colors rounded-lg text-white font-medium">
104120
Contact Us

0 commit comments

Comments
 (0)