Skip to content

Commit b48e671

Browse files
committed
chore: staged changes
1 parent be0a043 commit b48e671

File tree

5 files changed

+40
-5
lines changed

5 files changed

+40
-5
lines changed

src/packlets/assets/tickets-avail.svg

Lines changed: 12 additions & 0 deletions
Loading

src/packlets/new-front/speakers.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const speakers: Speaker[] = await fetch("https://sessionize.com/api/v2/i9esy36q/
1717

1818
<section class="bg-brand-green px-8 py-12">
1919
<h1 class="text-5xl font-bold text-brand-yellow text-center pb-6">Speakers</h1>
20-
<p class="mx-auto max-w-3xl text-center text-white pb-12">
20+
<p class="mx-auto max-w-3xl text-center text-white pb-12 text-lg">
2121
We're looking for speakers who are passionate about their craft and have a
2222
story to share. If you're interested in speaking at the conference, please
2323
submit a proposal at <a class="text-brand-blue" href="https://sessionize.com/javascript-bangkok-2024/">Sessionize</a>.

src/packlets/new-front/sponsors.astro

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ import devcon from '$assets/devcon.svg'
1313

1414
<section class="py-12 px-8 bg-white">
1515
<div class="pb-12 text-center">
16-
<h1 class="pb-6 text-5xl font-bold text-brand-blue">Sponsors</h1>
17-
<p>
16+
<h1 class="pb-6 text-5xl font-bold text-brand-orange">Sponsors</h1>
17+
<p class="text-lg">
1818
JavaScript Bangkok would like to thank our sponsors for their kind
1919
contributions.
2020
</p>
21-
<p>
21+
<p class="text-lg">
2222
If you're interested in becoming a sponsor, email us at
23-
<a href="mailto:[email protected]" class="text-brand-blue"
23+
<a href="mailto:[email protected]" class="text-brand-orange"
2424
2525
>
2626
</p>

src/packlets/new-front/tickets.astro

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
import { Image } from 'astro:assets'
3+
4+
import ticketsAvailable from '$assets/tickets-avail.svg'
5+
---
6+
7+
<section class="bg-brand-blue px-8 py-12">
8+
<h1 class="text-5xl font-bold text-white text-center pb-6">Tickets</h1>
9+
<p class="mx-auto max-w-3xl text-center text-white pb-12 text-lg">
10+
Tickets are on sale, and available for purchase at <a class="text-brand-green" href="https://www.eventpop.me/e/38704/javascript-bangkok-2-0-0">Eventpop</a>
11+
</p>
12+
<div class="flex justify-center">
13+
<a
14+
href="https://www.eventpop.me/e/38704/javascript-bangkok-2-0-0"
15+
target="_blank"
16+
rel="noopener noreferrer"
17+
class="bg-white rounded-xl shadow border">
18+
<Image src={ticketsAvailable} alt="Ticket avaialble at Eventpop" class="w-72" />
19+
</a>
20+
</div>
21+
</section>

src/pages/index.astro

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import Logo from '$new-front/logo.astro'
55
import Patterns from '$playground/patterns.svelte'
66
import Schedule from '$new-front/schedule.astro'
77
import Map from '$new-front/map.astro'
8+
import Tickets from '$new-front/tickets.astro'
89
import Speakers from '$new-front/speakers.astro'
910
import Sponsors from '$new-front/sponsors.astro'
1011
import MobileStrip from '$playground/mobileStrip.svelte'
@@ -22,6 +23,7 @@ import MobileStrip from '$playground/mobileStrip.svelte'
2223
</div>
2324
<Schedule />
2425
<Map />
26+
<Tickets />
2527
<Speakers />
2628
<Sponsors />
2729

0 commit comments

Comments
 (0)