|
| 1 | +import { |
| 2 | + ArrowPathIcon, |
| 3 | + CloudArrowUpIcon, |
| 4 | + CogIcon, |
| 5 | + LockClosedIcon, |
| 6 | + ServerIcon, |
| 7 | + ShieldCheckIcon, |
| 8 | +} from '@heroicons/react/24/outline' |
| 9 | + |
| 10 | +const features = [ |
| 11 | + { |
| 12 | + name: 'Push to Deploy', |
| 13 | + description: 'Ac tincidunt sapien vehicula erat auctor pellentesque rhoncus. Et magna sit morbi lobortis.', |
| 14 | + icon: CloudArrowUpIcon, |
| 15 | + }, |
| 16 | + { |
| 17 | + name: 'SSL Certificates', |
| 18 | + description: 'Ac tincidunt sapien vehicula erat auctor pellentesque rhoncus. Et magna sit morbi lobortis.', |
| 19 | + icon: LockClosedIcon, |
| 20 | + }, |
| 21 | + { |
| 22 | + name: 'Simple Queues', |
| 23 | + description: 'Ac tincidunt sapien vehicula erat auctor pellentesque rhoncus. Et magna sit morbi lobortis.', |
| 24 | + icon: ArrowPathIcon, |
| 25 | + }, |
| 26 | + { |
| 27 | + name: 'Advanced Security', |
| 28 | + description: 'Ac tincidunt sapien vehicula erat auctor pellentesque rhoncus. Et magna sit morbi lobortis.', |
| 29 | + icon: ShieldCheckIcon, |
| 30 | + }, |
| 31 | + { |
| 32 | + name: 'Powerful API', |
| 33 | + description: 'Ac tincidunt sapien vehicula erat auctor pellentesque rhoncus. Et magna sit morbi lobortis.', |
| 34 | + icon: CogIcon, |
| 35 | + }, |
| 36 | + { |
| 37 | + name: 'Database Backups', |
| 38 | + description: 'Ac tincidunt sapien vehicula erat auctor pellentesque rhoncus. Et magna sit morbi lobortis.', |
| 39 | + icon: ServerIcon, |
| 40 | + }, |
| 41 | +] |
| 42 | + |
| 43 | +export default function FeaturesSection() { |
| 44 | + return ( |
| 45 | + <div className="relative bg-white py-24 sm:py-32 lg:py-40"> |
| 46 | + <div className="mx-auto max-w-md px-6 text-center sm:max-w-3xl lg:max-w-7xl lg:px-8"> |
| 47 | + <h2 className="text-lg font-semibold text-indigo-600">Deploy faster</h2> |
| 48 | + <p className="mt-2 text-3xl font-bold tracking-tight text-gray-900 sm:text-4xl"> |
| 49 | + Everything you need to deploy your app |
| 50 | + </p> |
| 51 | + <p className="mx-auto mt-5 max-w-prose text-xl text-gray-500"> |
| 52 | + Phasellus lorem quam molestie id quisque diam aenean nulla in. Accumsan in quis quis nunc, ullamcorper |
| 53 | + malesuada. Eleifend condimentum id viverra nulla. |
| 54 | + </p> |
| 55 | + <div className="mt-20"> |
| 56 | + <div className="grid grid-cols-1 gap-12 sm:grid-cols-2 lg:grid-cols-3"> |
| 57 | + {features.map((feature) => ( |
| 58 | + <div key={feature.name} className="pt-6"> |
| 59 | + <div className="flow-root rounded-lg bg-gray-50 px-6 pb-8"> |
| 60 | + <div className="-mt-6"> |
| 61 | + <div> |
| 62 | + <span className="inline-flex items-center justify-center rounded-xl bg-indigo-500 p-3 shadow-lg"> |
| 63 | + <feature.icon className="h-8 w-8 text-white" aria-hidden="true" /> |
| 64 | + </span> |
| 65 | + </div> |
| 66 | + <h3 className="mt-8 text-lg font-semibold leading-8 tracking-tight text-gray-900"> |
| 67 | + {feature.name} |
| 68 | + </h3> |
| 69 | + <p className="mt-5 text-base leading-7 text-gray-600">{feature.description}</p> |
| 70 | + </div> |
| 71 | + </div> |
| 72 | + </div> |
| 73 | + ))} |
| 74 | + </div> |
| 75 | + </div> |
| 76 | + </div> |
| 77 | + </div> |
| 78 | + ) |
| 79 | +} |
0 commit comments