Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
devilkiller-ag authored Jun 1, 2024
2 parents 06683d8 + b34f149 commit fbd3fac
Showing 1 changed file with 18 additions and 20 deletions.
38 changes: 18 additions & 20 deletions components/layout/DocsLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -172,16 +172,15 @@ export default function DocsLayout({ post, navItems = {}, children }: IDocsLayou
<span className='font-sans text-sm text-gray-800 antialiased'>
{`What is new in v${post.title}? Have a look at the `}
</span>
<Link href={post.releaseNoteLink}>
<a
target='_blank'
rel='noopener noreferrer'
className={
'cursor-pointer font-body text-sm font-medium leading-6 text-secondary-500 underline transition duration-150 ease-in-out hover:text-secondary-600 focus:text-gray-900 focus:outline-none'
}
>
release notes
</a>
<Link
href={post.releaseNoteLink}
target='_blank'
rel='noopener noreferrer'
className={
'cursor-pointer font-body text-sm font-medium leading-6 text-secondary-500 underline transition duration-150 ease-in-out hover:text-secondary-600 focus:text-gray-900 focus:outline-none'
}
>
release notes
</Link>
.
</div>
Expand All @@ -191,16 +190,15 @@ export default function DocsLayout({ post, navItems = {}, children }: IDocsLayou
</span>
<span className='font-sans text-sm text-gray-800 antialiased'>
Check&nbsp;
<Link href='https://www.asyncapi.com/blog?tags=Release+Notes'>
<a
target='_blank'
rel='noopener noreferrer'
className={
'cursor-pointer font-body text-sm font-medium leading-6 text-secondary-500 underline transition duration-150 ease-in-out hover:text-secondary-600 focus:text-gray-900 focus:outline-none'
}
>
list of release notes
</a>
<Link
href='https://www.asyncapi.com/blog?tags=Release+Notes'
target='_blank'
rel='noopener noreferrer'
className={
'cursor-pointer font-body text-sm font-medium leading-6 text-secondary-500 underline transition duration-150 ease-in-out hover:text-secondary-600 focus:text-gray-900 focus:outline-none'
}
>
list of release notes
</Link>
.
</span>
Expand Down

0 comments on commit fbd3fac

Please sign in to comment.