diff --git a/components/Speaker/speaker.js b/components/Speaker/speaker.js
index 05833514..b168b052 100644
--- a/components/Speaker/speaker.js
+++ b/components/Speaker/speaker.js
@@ -7,8 +7,8 @@ function Speaker({details, location, className}) {
className={`w-auto text-center flex flex-col items-center card h-auto rounded-md p-[27px] ${className}`}
data-test="speakers-section"
>
-
-
+
+
{details.name}
diff --git a/config/city-lists.json b/config/city-lists.json
index a75d7016..9c332ba4 100644
--- a/config/city-lists.json
+++ b/config/city-lists.json
@@ -3,6 +3,7 @@
"name": "Online",
"country": " Edition",
"date": "30th October 2024",
+ "cfpdate":"Not announced yet",
"description": "Join us for the AsyncAPI Online Conference Edition as the community unites across the globe to share experiences, collaborate, and foster meaningful connections.",
"img": "/img/testMic.png",
"address": "AsyncAPI Youtube Channel",
@@ -20,6 +21,7 @@
"name": "Helsinki",
"country": "Finland",
"date": "May 29 2024",
+ "cfpdate":"Not announced yet",
"description": "Join us in Helsinki for the AsyncAPI Conference, where we will explore all things AsyncAPI and connect physical and digital worlds. Get excited as we delve into sustainable APIs for the Era of AI, Data Platforms, and Quantum Computing!.",
"img": "/img/finland.webp",
"address": "Pikku-Finlandia, Helsinki, Karamzininranta 4, 00100 Helsinki, Finland",
@@ -35,6 +37,7 @@
"name": "London",
"country": "UK",
"date": "September 18, 2024",
+ "cfpdate":"Not announced yet",
"description": "Join us in London for AsyncAPI Conference and learn how to speak fluent API! Let's taco about messaging and have a fiesta you will remember!",
"img": "/img/london.gif",
"address": "155 Bishopsgate, London EC2M 3YD",
@@ -50,6 +53,7 @@
"name": "Paris",
"country": "France",
"date": "December 3-5, 2024",
+ "cfpdate":"September 20, 2024",
"description": "Join us at apidays Paris for the AsyncAPI Conference and experience the art of API perfection! Let's craft a symphony of messaging and celebrate tech in style!",
"img": "https://media1.giphy.com/media/v1.Y2lkPTc5MGI3NjExd24yenR4djEyZzRoeDA0ZmEyb3Y1c2F4NWVmbG13NmZwYWNhZzdnNiZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/Tuy3QxNZF1cxG/giphy.gif",
"address": "CNIT (Centre des Nouvelles Industries et Technologies), Paris 2 Place de la Défense, 92092 Puteaux",
diff --git a/pages/index.js b/pages/index.js
index e6fe69bf..0427c86c 100644
--- a/pages/index.js
+++ b/pages/index.js
@@ -95,11 +95,20 @@ export default function Home() {
className={`w-[168px] ${
city.city === speaker.city
? 'gradient-bg'
- : 'border border-gray'
+ : 'border border-gray btn relative overflow-hidden transition-all rounded group py-1.5 px-2.5 '
}`}
overlay={true}
>
- {speaker.city}
+ {/* {speaker.city} */}
+ {city.city !== speaker.city && (
+ <>
+
+
+ {speaker.city}
+
+ >
+ )}
+ {city.city === speaker.city && speaker.city}
);
diff --git a/pages/venue/[id].js b/pages/venue/[id].js
index 0a95d633..25929f04 100644
--- a/pages/venue/[id].js
+++ b/pages/venue/[id].js
@@ -72,7 +72,7 @@ function Venue({ city }) {
className='border border-x-0 border-b-0 border-t-[#333] py-28 container flex flex-col justify-center items-center '
>
{city.cfp ?
-
+
:
}
diff --git a/styles/globals.css b/styles/globals.css
index 5a699738..ec99ed9f 100644
--- a/styles/globals.css
+++ b/styles/globals.css
@@ -87,6 +87,9 @@ body {
opacity: 1;
}
+.transparent-bg{
+ @apply w-56 h-48 rounded gradient-bg absolute bottom-0 left-0 translate-x-full ease-out duration-500 transition-all translate-y-full mb-9 ml-9 group-hover:ml-0 group-hover:mb-32 group-hover:translate-x-0
+}
.navbg:hover, .navbg:focus{
background: linear-gradient(225deg, #AD20E2 9.35%, #2DCCFD 88.41%);
}