parent
90f3ffe270
commit
e5e0a7c8c5
10 changed files with 97 additions and 48 deletions
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 33 KiB |
@ -0,0 +1,16 @@ |
||||
type TeamAnnouncementProps = {}; |
||||
|
||||
export function TeamAnnouncement(props: TeamAnnouncementProps) { |
||||
return ( |
||||
<a |
||||
className="rounded-md border border-dashed border-purple-700 px-3 py-1.5 text-purple-400 transition-colors hover:border-gray-700 hover:text-white" |
||||
href="/teams" |
||||
> |
||||
<span className="relative -top-[0.5px] mr-1 text-xs font-semibold uppercase text-white"> |
||||
New |
||||
</span>{' '} |
||||
<span className={'hidden sm:inline'}>Announcing roadmaps for teams. <span className='font-semibold'>Learn more!</span></span> |
||||
<span className={'inline sm:hidden'}>Announcing roadmaps for teams!</span> |
||||
</a> |
||||
); |
||||
} |
Loading…
Reference in new issue