From d40f3bff981b91ff183de59d20a8a1adabe325a6 Mon Sep 17 00:00:00 2001 From: Dmitry Pokidov Date: Fri, 6 Oct 2023 20:58:22 +1100 Subject: [PATCH] Fixed styling --- components/importantDates.tsx | 2 +- pages/index.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/importantDates.tsx b/components/importantDates.tsx index e379223a..9dbcb132 100644 --- a/components/importantDates.tsx +++ b/components/importantDates.tsx @@ -47,7 +47,7 @@ const ImportantDates = ({ conference, actions, currentDate }: ImportantDatesProp )} {actions && actions.length > 0 && ( -
+

What now?

{actions.map((a) => ( diff --git a/pages/index.tsx b/pages/index.tsx index 5aa0d257..1c9aea76 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -10,7 +10,7 @@ import Link from 'next/link' import { Sponsors } from '../components/Sponsors/sponsors' const mailingList = - '

Join the DDD Melbourne mailing list

Stay updated with the latest news and happenings from Melbourne\'s largest and most inclusive tech community conference.

' + '

Join the DDD Melbourne mailing list

Stay updated with the latest news and happenings from Melbourne\'s largest and most inclusive tech community conference.

' export const Index: NextPage = () => { const { conference, dates, currentDate } = useConfig()