File tree Expand file tree Collapse file tree 5 files changed +40
-5
lines changed
Expand file tree Collapse file tree 5 files changed +40
-5
lines changed Original file line number Diff line number Diff 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 >.
Original file line number Diff line number Diff 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:sponsor@javascriptbangkok.com" class =" text-brand-blue "
23+ <a href =" mailto:sponsor@javascriptbangkok.com" class =" text-brand-orange "
2424 >sponsor@javascriptbangkok.com</a
2525 >
2626 </p >
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import Logo from '$new-front/logo.astro'
55import Patterns from ' $playground/patterns.svelte'
66import Schedule from ' $new-front/schedule.astro'
77import Map from ' $new-front/map.astro'
8+ import Tickets from ' $new-front/tickets.astro'
89import Speakers from ' $new-front/speakers.astro'
910import Sponsors from ' $new-front/sponsors.astro'
1011import 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
You can’t perform that action at this time.
0 commit comments