-
Notifications
You must be signed in to change notification settings - Fork 64
Add section "The Week" mini version #1301
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
Conversation
Preview available
|
const weekPeriods: WeekPeriod[] = [ | ||
{ | ||
id: 'monday-tuesday', | ||
days: 'Mon – Tues', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
days: 'Mon – Tues', | |
days: 'Monday – Tuesday', |
}, | ||
{ | ||
id: 'wednesday-friday', | ||
days: 'Wed – Friday', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
days: 'Wed – Friday', | |
days: 'Wednesday – Friday', |
}, | ||
{ | ||
id: 'saturday-sunday', | ||
days: 'Sat – Sun', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
days: 'Sat – Sun', | |
days: 'Saturday – Sunday', |
id: 'saturday-sunday', | ||
days: 'Sat – Sun', | ||
dates: '19 – 20 July', | ||
activities: 'Sprints', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
activities: 'Sprints', | |
activities: 'Sprints & Beginners' Day', |
id: 'monday-tuesday', | ||
days: 'Mon – Tues', | ||
dates: '14 – 15 July', | ||
activities: 'Workshops & Tutorials', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
activities: 'Workshops & Tutorials', | |
activities: 'Tutorials', |
<Headline id="theweek" title="The Week" center="true" /> | ||
<div class="grid sm:flex w-full justify-center sm:justify-around "> | ||
{weekPeriods.map((period) => ( | ||
<div class="grid grid-cols-1 text-center w-[160px] m-5 rounded overflow-hidden"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I create it in this PR |
already implemented in #1311 |
Close #1292