diff --git a/components/Venue/venue.js b/components/Venue/venue.js index 5fdd5b8e..5671af44 100644 --- a/components/Venue/venue.js +++ b/components/Venue/venue.js @@ -1,17 +1,21 @@ /* eslint-disable react/no-unescaped-entities */ import React from 'react'; +import Link from 'next/link'; function Venue({ className, city }) { return ( -
-
+ +
-
-
cfp is open
- - - +
+ {city.cfp?
cfp is open
:null} +
@@ -19,12 +23,12 @@ function Venue({ className, city }) { {city.country}, {city.name}
-
{city.date}
+
{city.date}
-
-
+
+ ); }