-
Notifications
You must be signed in to change notification settings - Fork 597
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
secrets and malware dashboard updates
- Loading branch information
Showing
11 changed files
with
68 additions
and
1,424 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
...tend/apps/dashboard/src/features/malwares/components/landing/MostExploitablePromoCard.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import { Button, Card } from 'ui-components'; | ||
|
||
import { DFLink } from '@/components/DFLink'; | ||
import { ArrowLine } from '@/components/icons/common/ArrowLine'; | ||
import { VulnerabilityIcon } from '@/components/sideNavigation/icons/Vulnerability'; | ||
import { CardHeader } from '@/features/vulnerabilities/components/landing/CardHeader'; | ||
|
||
export const MostExploitablePromoCard = () => { | ||
return ( | ||
<Card className="rounded min-h-full flex flex-col"> | ||
<CardHeader icon={<VulnerabilityIcon />} title={'Most Exploitable Malwares'} /> | ||
<div className="flex-1 flex flex-col items-center justify-center gap-4"> | ||
<div className="text-h4 text-text-input-value">Too Many Malwares?</div> | ||
<DFLink | ||
unstyled | ||
className="my-2" | ||
href="https://deepfence.io/threatstryker/" | ||
target="_blank" | ||
> | ||
<Button | ||
color="success" | ||
endIcon={<ArrowLine className="rotate-90" />} | ||
className="bg-[#009852] dark:bg-[#15b77e]" | ||
> | ||
Get ThreatStryker | ||
</Button> | ||
</DFLink> | ||
</div> | ||
</Card> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.