tour implementation; style fixes
This commit is contained in:
parent
96e42dc5f1
commit
8e9d0ec900
4 changed files with 77 additions and 1 deletions
22
components/TourDate.tsx
Normal file
22
components/TourDate.tsx
Normal file
|
@ -0,0 +1,22 @@
|
|||
const TourDate = ({ date, venue, details, tickets }) => {
|
||||
return (
|
||||
<p className="pb-2">
|
||||
{date}
|
||||
{` `}
|
||||
{venue}
|
||||
{` `}
|
||||
{details}
|
||||
|
||||
<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
|
Loading…
Add table
Add a link
Reference in a new issue