Skip to content

Commit

Permalink
updated website with latest info (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
AceTheCreator authored Oct 23, 2023
1 parent 8386657 commit 159b22f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 27 deletions.
9 changes: 4 additions & 5 deletions components/Countdown/countdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ const dates = [
name: 'Bangalore, India',
date: 'November 30, 2023',
},
{
name: 'Paris, France',
date: 'December 6, 2023',
},
];

function Countdowns() {
Expand Down Expand Up @@ -60,7 +64,6 @@ function Countdowns() {
<span className='glitch text-white text-[30px] sm:text-[18px]'>
Ended
</span>
{/* <p className='text-lg mt-[30px]'>Seconds</p> */}
</div>
</div>
} else {
Expand All @@ -74,25 +77,21 @@ function Countdowns() {
<span className='glitch text-white text-[30px] sm:text-[18px]'>
{days}:
</span>
{/* <p className='text-lg mt-[30px]'>Days</p> */}
</div>
<div>
<span className='glitch text-white text-[30px] sm:text-[18px]'>
{hours}:
</span>
{/* <p className='text-lg mt-[30px]'>Hours</p> */}
</div>
<div>
<span className='glitch text-white text-[30px] sm:text-[18px]'>
{minutes}:
</span>
{/* <p className='text-lg mt-[30px]'>Minutes</p> */}
</div>
<div>
<span className='glitch text-white text-[30px] sm:text-[18px]'>
{seconds}
</span>
{/* <p className='text-lg mt-[30px]'>Seconds</p> */}
</div>
</div>
);
Expand Down
4 changes: 2 additions & 2 deletions components/Header/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,11 @@ function Header() {
</div>
<div className='mt-[54px] relative flex items-center justify-center'>
<a
href='https://www.youtube.com/watch?v=FN5eR1Zqh9c'
href='https://opencollective.com/asyncapi/events/asyncapi-conference-on-tour-6b3c0aa1/contribute/aacot-london-edition-66187'
target='_blank'
rel='noreferrer'
>
<Button className='w-[200px]'>Join us live in Madrid</Button>
<Button className='w-[200px]'>Get Bangalore Ticket</Button>
</a>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion config/city-lists.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"ticket": "https://www.youtube.com/watch?v=FN5eR1Zqh9c",
"freeTickets":"",
"freeTicketText":"Grab Free Tickets",
"buttonText":"Join us live now"
"buttonText":"See Recordings"
},
{
"name": "Bangalore",
Expand Down
2 changes: 1 addition & 1 deletion config/speakers.json
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@
{
"city": "Bangalore",
"location": "Bangalore, India",
"lists": []
"lists": "coming soon"
},
{
"city": "Paris",
Expand Down
20 changes: 2 additions & 18 deletions pages/venue/[id].js
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,6 @@ import Agenda from '../../components/Agenda/agenda';
import Speaker from '../../components/Speaker/speaker';
import speakers from '../../config/speakers.json';
import Sponsors from '../../components/Sponsors/sponsors';
import Paper from '../../components/Form/paper';

const tabs = [
{
title: 'Agenda',
},

{
title: 'Speakers',
},
{
title: 'Sponsors',
},
];

export async function getStaticProps({ params }) {
let res = {};
Expand Down Expand Up @@ -87,9 +73,7 @@ function Venue({ city }) {
<Agenda city={city} />
</div>
</div>
{city.name === 'Bangalore' ? <div id='speakers' className='container border border border-x-0 border-b-0 border-[#333] py-28'>
<Paper />
</div> : <div
<div
id='speakers'
className='border border border-x-0 border-b-0 border-[#333] py-28'
>
Expand Down Expand Up @@ -142,7 +126,7 @@ function Venue({ city }) {
)}
</div>
</div>
</div>}
</div>
<div
id='sponsors'
className='border border border-x-0 border-b-0 border-[#333] py-28'
Expand Down

0 comments on commit 159b22f

Please sign in to comment.