Skip to content

Commit

Permalink
feat: venues addresses to be clickable link that opens in new tab (as…
Browse files Browse the repository at this point in the history
  • Loading branch information
Mithilesh-create committed Sep 28, 2023
1 parent 5e8d745 commit fc9fe4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/venue/[id].js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function Venue({ city }) {
<Paragraph className='mt-[24px]'>{city.description}</Paragraph>

<Heading typeStyle='lg' className='text-white mt-[24px]'>
<a href={`http://maps.google.com/?q=${city.address}`}>
<a href={`http://maps.google.com/?q=${city.address}`} target='_blank'>
{city.address}
</a>
</Heading>
Expand Down

0 comments on commit fc9fe4a

Please sign in to comment.