From 342f12abac73a5558dec50b8f3e4ad274c0f5c4f Mon Sep 17 00:00:00 2001 From: Niko Date: Sun, 15 Jun 2025 00:23:02 +0200 Subject: [PATCH 1/2] Add Detailed Daily Conference Schedule --- src/components/sections/schedule.astro | 42 ++++++++++++++++++++++++++ src/pages/index.astro | 2 ++ 2 files changed, 44 insertions(+) create mode 100644 src/components/sections/schedule.astro diff --git a/src/components/sections/schedule.astro b/src/components/sections/schedule.astro new file mode 100644 index 000000000..c3837e93d --- /dev/null +++ b/src/components/sections/schedule.astro @@ -0,0 +1,42 @@ +--- +import Section from "@ui/Section.astro"; +import Button from "@ui/Button.astro"; +import Headline from "@ui/Headline.astro"; +const schedule = [ +{ dayname: 'Sunday', day:'July 14', href: '/schedule/day/2025-07-14' }, + { dayname: 'Monday', day:'July 15', href: '/schedule/day/2025-07-15' }, + { dayname: 'Tuesday', day:'July 16', href: '/schedule/day/2025-07-16' }, + { dayname: 'Wednesday', day:'July 17', href: '/schedule/day/2025-07-17' }, + { dayname: 'Thursday', day:'July 18', href: '/schedule/day/2025-07-18' }, +]; + +const sprints = { + day: 'July 19–20', + dayname: 'Sprints', + href: '/sprints', +}; +--- + +
+ +
+ {schedule.map(day => ( + + ))} + + +
+
+ + diff --git a/src/pages/index.astro b/src/pages/index.astro index 89fe9a4b3..587937f6d 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -3,6 +3,7 @@ import Layout from "@layouts/Layout.astro"; import Hero from "@sections/hero/hero.astro"; // import Updates from "@sections/updates/updates.astro"; import Week from "@sections/updates/week.astro"; +import ScheduleDays from "@sections/schedule.astro"; import Keynoters from "@sections/keynoters/keynoters.astro"; import Speakers from "@sections/speakers.astro"; import Prague from "@sections/prague.astro"; @@ -16,6 +17,7 @@ import Subscribe from "@sections/subscribe.astro"; > + From a2d337f6451263a301972ec0f848318a8a6ef691 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niko=C5=9B?= Date: Mon, 16 Jun 2025 13:03:54 +0200 Subject: [PATCH 2/2] Update src/components/sections/schedule.astro MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Mia Bajić <38294198+clytaemnestra@users.noreply.github.com> --- src/components/sections/schedule.astro | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/sections/schedule.astro b/src/components/sections/schedule.astro index c3837e93d..285345a6d 100644 --- a/src/components/sections/schedule.astro +++ b/src/components/sections/schedule.astro @@ -3,11 +3,11 @@ import Section from "@ui/Section.astro"; import Button from "@ui/Button.astro"; import Headline from "@ui/Headline.astro"; const schedule = [ -{ dayname: 'Sunday', day:'July 14', href: '/schedule/day/2025-07-14' }, - { dayname: 'Monday', day:'July 15', href: '/schedule/day/2025-07-15' }, - { dayname: 'Tuesday', day:'July 16', href: '/schedule/day/2025-07-16' }, - { dayname: 'Wednesday', day:'July 17', href: '/schedule/day/2025-07-17' }, - { dayname: 'Thursday', day:'July 18', href: '/schedule/day/2025-07-18' }, +{ dayname: 'Monday', day:'July 14', href: '/schedule/day/2025-07-14' }, + { dayname: 'Tuesday', day:'July 15', href: '/schedule/day/2025-07-15' }, + { dayname: 'Wednesday', day:'July 16', href: '/schedule/day/2025-07-16' }, + { dayname: 'Thursday', day:'July 17', href: '/schedule/day/2025-07-17' }, + { dayname: 'Friday', day:'July 18', href: '/schedule/day/2025-07-18' }, ]; const sprints = {