diff --git a/src/components/sections/schedule.astro b/src/components/sections/schedule.astro new file mode 100644 index 000000000..285345a6d --- /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: '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 = { + 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"; > +