Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: schedule update #219

Merged
merged 1 commit into from
Jan 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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