|
| 1 | +import { CalendarDaysIcon, HandRaisedIcon } from '@heroicons/react/24/outline' |
| 2 | +import { Container } from './container' |
| 3 | +import Lightning from './lightning' |
| 4 | +import { Badge } from '../ui/badge' |
| 5 | +import Link from 'next/link' |
| 6 | +import { Button } from './button' |
| 7 | + |
| 8 | +export default function FirewallSection() { |
| 9 | + return ( |
| 10 | + <Container className="pb-36"> |
| 11 | + <div className="relative isolate overflow-hidden rounded-2xl py-16 ring-1 ring-white/15 sm:py-24"> |
| 12 | + <div className="absolute inset-0 -z-10 max-sm:opacity-30"> |
| 13 | + <Lightning |
| 14 | + hue={39} |
| 15 | + xOffset={-0.1} |
| 16 | + speed={0.5} |
| 17 | + intensity={0.5} |
| 18 | + size={1.5} |
| 19 | + backgroundColor="#0D1017" |
| 20 | + /> |
| 21 | + </div> |
| 22 | + <div className="mx-auto max-w-7xl px-6 lg:px-16"> |
| 23 | + <div className="mx-auto grid max-w-2xl grid-cols-1 gap-x-8 gap-y-16 lg:max-w-none lg:grid-cols-3"> |
| 24 | + <div className="max-w-xl lg:max-w-lg"> |
| 25 | + <Badge variant="upcoming"> |
| 26 | + Upcoming Feature 🎉 |
| 27 | + </Badge> |
| 28 | + <h2 className="mt-4 text-4xl font-semibold tracking-tight text-white"> |
| 29 | + Dependency Firewall |
| 30 | + </h2> |
| 31 | + <p className="mt-4 text-base text-gray-300"> |
| 32 | + DevGuard will soon introduce a Dependency |
| 33 | + Firewall, blocking the install of known |
| 34 | + malicious packages. It will support npm and GO. |
| 35 | + </p> |
| 36 | + </div> |
| 37 | + <div></div> |
| 38 | + <dl className="flex items-center justify-end"> |
| 39 | + <div className="flex flex-col items-end text-right"> |
| 40 | + <div className="rounded-md bg-white/5 p-2 ring-1 ring-white/10"> |
| 41 | + <HandRaisedIcon |
| 42 | + aria-hidden="true" |
| 43 | + className="size-6 text-white" |
| 44 | + /> |
| 45 | + </div> |
| 46 | + <dt className="mt-4 text-base font-semibold text-white"> |
| 47 | + Prevent Supply Chain Attacks |
| 48 | + </dt> |
| 49 | + <dd className="mt-2 text-sm/6 text-gray-400"> |
| 50 | + Prevent attacks like the recent Shai Hulud |
| 51 | + incident. Protect your software supply chain |
| 52 | + by blocking malicious dependencies before |
| 53 | + they reach your codebase. |
| 54 | + </dd> |
| 55 | + </div> |
| 56 | + </dl> |
| 57 | + </div> |
| 58 | + </div> |
| 59 | + </div> |
| 60 | + </Container> |
| 61 | + ) |
| 62 | +} |
0 commit comments