Skip to content

Commit

Permalink
chore: schedule update
Browse files Browse the repository at this point in the history
  • Loading branch information
theClarkSell committed Jan 23, 2024
1 parent d48bb4c commit 7108833
Show file tree
Hide file tree
Showing 2 changed files with 84 additions and 16 deletions.
96 changes: 82 additions & 14 deletions src/routes/(that conferences)/online/_components/Schedule.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,27 +13,48 @@
start: '8:30 AM'
},
{
name: 'Panelist Conversation',
name: 'Break',
description: '',
start: '10:00 AM'
},
{
name: 'Keynote Reflections',
description: '',
start: '10:30 AM'
},
{
name: 'Lunch / Break',
name: 'Breaking into Tech',
description: '',
start: '11:30 AM'
},
{
name: 'Compressed FM Live',
name: 'Break / Live Q&A',
description: '',
start: '12:30 PM'
},
{
name: 'Navigating Hard Times in Tech',
description: '',
start: '1:00 PM'
},
{
name: 'Panelist Conversation',
name: 'Break / Live Q&A',
description: '',
start: '2:00 PM'
},
{
name: 'Compressed FM Live',
description: '',
start: '2:30 PM'
},
{
name: 'Panelist Conversation',
name: 'Break / Live Q&A',
description: '',
start: '3:30 PM'
},
{
name: 'Live Podcast',
description: '',
start: '4:00 AM'
}
Expand All @@ -49,25 +70,46 @@
start: '8:30 AM'
},
{
name: 'Panelist Conversation',
name: 'Break',
description: '',
start: '10:00 AM'
},
{
name: 'Keynote Reflections',
description: '',
start: '10:30 AM'
},
{
name: 'Lunch Break',
name: 'Common Accessibility Mistakes',
description: '',
start: '11:30 AM'
},
{
name: 'Tech Commute Live',
name: 'Break / Live Q&A',
description: '',
start: '12:30 PM'
},
{
name: 'The Future of AI and VR',
description: '',
start: '1:00 PM'
},
{
name: 'Panelist Conversation',
name: 'Break / Live Q&A',
description: '',
start: '2:00 PM'
},
{
name: 'Whiskey Web and Whatnot Live',
description: '',
start: '2:30 PM'
},
{
name: 'Break / Live Q&A',
description: '',
start: '3:30 PM'
},
{
name: 'Whiskey Web and Whatnot Live',
description: '',
Expand All @@ -85,29 +127,55 @@
start: '8:30 AM'
},
{
name: 'Panelist Conversation',
name: 'Break',
description: '',
start: '10:00 AM'
},
{
name: 'Keynote Reflections',
description: '',
start: '10:30 AM'
},
{
name: 'Lunch Break',
name: 'Comparing Modern JavaScript Frameworks',
description: '',
start: '11:30 AM'
},
{
name: 'Podcast Live',
name: 'Break / Live Q&A',
description: '',
start: '12:30 PM'
},
{
name: 'Modern Web Development Best Practices',
description: '',
start: '1:00 PM'
},
{
name: 'Panelist Conversation',
name: 'Break / Live Q&A',
description: '',
start: '2:00 PM'
},
{
name: 'Whiskey Web and Whatnot Live',
description: '',
start: '2:30 PM'
},
{
name: 'Break / Live Q&A',
description: '',
start: '3:30 PM'
},
{
name: 'Whiskey Web and Whatnot Live',
description: '',
start: '4:00 PM'
},
{
name: 'Closing',
description: '',
start: '4:00 AM'
start: '5:00 PM'
}
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
export let sessions;
</script>

<ol class="space-y-8 bg-white/60 px-10 py-14 text-center shadow-xl shadow-blue-900/5 backdrop-blur">
<ol class="space-y-6 bg-white/60 py-14 text-center shadow-xl shadow-blue-900/5 backdrop-blur">
{#each sessions as session, i}
<!-- make each of these a button -->
<li>
{#if i > 0}
<div class="mx-auto mb-8 h-px w-48 bg-indigo-500/10" />
<div class="mx-auto mb-6 h-px w-48 bg-indigo-500/10" />
{/if}

<h4 class="text-lg font-semibold tracking-tight text-thatBlue-700">
Expand Down

0 comments on commit 7108833

Please sign in to comment.