Skip to content

fix: resources added for Helsinki #327

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

Merged
merged 14 commits into from
Jul 9, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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
5 changes: 4 additions & 1 deletion components/Agenda/agenda.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,25 @@ function Agenda({ city }) {
return (
<div className=''>
<div className='flex flex-col justify-center items-center'>

<Heading className='text-[30px] text-white'>
Agenda
Agenda
</Heading>
{!city.agenda && <div className='w-[720px] lg:w-full mt-[140px] text-center'>
<Heading typeStyle='lg' className='text-white text-[30px]'>
Agenda Coming Soon - Stay Tuned!
</Heading>
</div>}
</div>

{city.agenda && <div className='mt-[40px]'>
<Heading
typeStyle='heading-md'
className='text-gradient text-2xl'
level='h3'>
{city.date}
</Heading>

<div className='mt-[40px]'>
{city.agenda.map((talk) => {
return <div key={talk.session} className={`flex sm:flex-col justify-between mt-[50px] ${!talk.speaker && 'countdown-text-gradient'}`}>
Expand Down
16 changes: 15 additions & 1 deletion config/links.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,21 @@
{
"title":"Past Editions",
"ref":"/editions"
}
},
{
"title":"Resources Hub",
"ref":"",
"subMenu": [

{
"title": "Helsinki Slides",
"ref": "https://drive.google.com/drive/folders/1nY7dZF8WFXZ3r2rCWJDDoT2C_GMfQJMV?usp=drive_link",
"target": "_blank"
}

]
}

]


Expand Down
2 changes: 1 addition & 1 deletion pages/venue/[id].js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ function Venue({ city }) {
</div>
<div
id='agenda'
className='border border border-x-0 border-b-0 border-t-[#333] py-28 container flex flex-col justify-center items-center '
className='border border-x-0 border-b-0 border-t-[#333] py-28 container flex flex-col justify-center items-center '
>
<div className='w-[1130px] lg:w-full'>
<Agenda city={city} />
Expand Down