1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-31 21:11:44 +02:00

Update feature announcement

This commit is contained in:
Kamran Ahmed
2024-08-18 00:37:33 +01:00
parent fbd24ea5e2
commit 82fbb1235e

View File

@@ -1,19 +1,20 @@
type AIAnnouncementProps = {};
type FeatureAnnouncementProps = {};
export function FeatureAnnouncement(props: AIAnnouncementProps) {
export function FeatureAnnouncement(props: FeatureAnnouncementProps) {
return (
<a
className="rounded-md border border-dashed border-purple-600 px-3 py-1.5 text-purple-400 transition-colors hover:border-purple-400 hover:text-purple-200"
href="/community"
href="https://www.youtube.com/watch?v=9lS3slfJ0x0"
target='_blank'
>
<span className="relative -top-[1px] mr-1 text-xs font-semibold uppercase text-white">
New
</span>{' '}
<span className={'hidden sm:inline'}>
Explore community made roadmaps
Practice your skills with projects
</span>
<span className={'inline text-sm sm:hidden'}>
Community roadmaps explorer!
Build projects to skill up
</span>
</a>
);