tour implementation; style fixes

This commit is contained in:
Cory Dransfeldt 2022-06-06 15:29:35 -07:00
parent 96e42dc5f1
commit 8e9d0ec900
4 changed files with 77 additions and 1 deletions

22
components/TourDate.tsx Normal file
View file

@ -0,0 +1,22 @@
const TourDate = ({ date, venue, details, tickets }) => {
return (
<p className="pb-2">
{date}
{` `}
{venue}
{` `}
{details}
&nbsp;
<a
href={tickets}
rel="noopener nofollow noreferrer"
target="_blank"
className="text-primary-500 hover:text-primary-600 dark:hover:text-primary-400"
>
Tickets
</a>
</p>
)
}
export default TourDate