diff --git a/components/About/about.js b/components/About/about.js index 02cf56f9..27c96433 100644 --- a/components/About/about.js +++ b/components/About/about.js @@ -30,25 +30,24 @@ function About() {
- - -
+ diff --git a/components/Buttons/button.js b/components/Buttons/button.js index 4293fc08..72545ef8 100644 --- a/components/Buttons/button.js +++ b/components/Buttons/button.js @@ -6,7 +6,7 @@ function Button({className, children, overlay, onClick, type, disabled}) { disabled={disabled} type={type} onClick={onClick} - className={`${overlay ? '' : 'gradient-bg'} text-white h-[54px] rounded-md p-[8px] ${className}`} + className={`${overlay ? '' : 'gradient-bg'} flex items-center justify-center text-white h-[54px] rounded-md p-[8px] ${className}`} >{children} ); } diff --git a/components/Navbar/navbar.js b/components/Navbar/navbar.js index 840c95c3..7121dd72 100644 --- a/components/Navbar/navbar.js +++ b/components/Navbar/navbar.js @@ -55,7 +55,7 @@ function Navbar() { if (!isSubMenuHovered) { setShow(null); } - }, 300); + }, 300); }; const handleSubMenuEnter = () => { @@ -121,21 +121,15 @@ function Navbar() { {show === link.title && link.subMenu && (
{link.subMenu.map((subL) => ( - {link.subMenu.length === 1 ? ( -
- {subL.title} -
- ) : ( -
- {subL.title} -
- )} +
+ {subL.title} +
))}
diff --git a/components/Speaker/guideline.js b/components/Speaker/guideline.js index 56b523bf..6af41e0d 100644 --- a/components/Speaker/guideline.js +++ b/components/Speaker/guideline.js @@ -54,7 +54,7 @@ function Guidelines({talkDeadLine,virtual,name,cfp}) { }}>

{faq.q}

- +
@@ -78,7 +78,7 @@ function Guidelines({talkDeadLine,virtual,name,cfp}) { }}>

{faq.q}

- +
{ virtual?

{faq.av}

: @@ -102,7 +102,7 @@ function Guidelines({talkDeadLine,virtual,name,cfp}) { }}>

{faq.q}

- +
{ @@ -114,7 +114,7 @@ function Guidelines({talkDeadLine,virtual,name,cfp}) { })} -
+
{cfp && } diff --git a/components/Tickets/ticketCards.js b/components/Tickets/ticketCards.js index 5f73b8e4..3e67fe17 100644 --- a/components/Tickets/ticketCards.js +++ b/components/Tickets/ticketCards.js @@ -13,7 +13,7 @@ function TicketCards({ className, city }) {
{city.name}, {city.country}
{city.date}
-
+
{/* Show a button based on the event status */} {isEndedOrUpcoming ? ( diff --git a/pages/venue/[id].js b/pages/venue/[id].js index 58e93950..affa96a8 100644 --- a/pages/venue/[id].js +++ b/pages/venue/[id].js @@ -38,7 +38,7 @@ function Venue({ city }) {
-
+
{city.name=='Online'? {city.name} {city.country} : diff --git a/styles/globals.css b/styles/globals.css index ec99ed9f..4b9c83b3 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -1,9 +1,7 @@ +@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500;600;700&family=Inter:wght@300;400&family=Work+Sans:wght@300;400;500;600;700&display=swap'); @tailwind base; @tailwind components; @tailwind utilities; -@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500;600;700&display=swap'); -@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400&family=Work+Sans:wght@300;400;500;600;700&display=swap'); -@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@700&display=swap'); :root{ --bg-color: white;