|
| 1 | +import { CheckIcon } from '@heroicons/react/24/outline'; |
| 2 | +import { SectionHeading } from '@nx/nx-dev/ui-common'; |
| 3 | + |
| 4 | +const features = [ |
| 5 | + { |
| 6 | + name: 'Vacation and Sick Days', |
| 7 | + description: |
| 8 | + 'Four weeks of paid vacation + unlimited sick days. Paid regional holidays. Spend more time with your family and friends.', |
| 9 | + }, |
| 10 | + { |
| 11 | + name: 'Remote Work', |
| 12 | + description: |
| 13 | + 'Office space paid for by the company in Phoenix. Or work from home, work from anywhere you want.', |
| 14 | + }, |
| 15 | + { |
| 16 | + name: 'Competitive Salaries', |
| 17 | + description: |
| 18 | + 'We pay really well because we want you to live comfortably. Salaried employment with benefits - not hourly contracts.', |
| 19 | + }, |
| 20 | + { |
| 21 | + name: 'Flexibility at Work', |
| 22 | + description: |
| 23 | + 'You control your work hours. Run an errand or walk your dog during the day if you need to.', |
| 24 | + }, |
| 25 | + { |
| 26 | + name: 'Health, Dental, & Vision Insurance', |
| 27 | + description: |
| 28 | + 'We offer plans for all employees. Canadian employees also get an HSA account.', |
| 29 | + }, |
| 30 | + { |
| 31 | + name: 'No Red Tape Attitude Towards Expenses', |
| 32 | + description: |
| 33 | + 'Get the best hardware, software, supplies & books. No pre-approval for small purchases. Phone and internet reimbursement.', |
| 34 | + }, |
| 35 | + { |
| 36 | + name: 'Exceptional Career Development', |
| 37 | + description: |
| 38 | + 'Expenses and time off provided for conference attendance and speaking. Write blog posts and books. Meet exceptional folks leading software communities and build your reputation.', |
| 39 | + }, |
| 40 | +]; |
| 41 | + |
| 42 | +export function WhatWeOffer(): JSX.Element { |
| 43 | + return ( |
| 44 | + <article className="mx-auto max-w-7xl px-6 lg:grid lg:grid-cols-3 lg:gap-x-12 lg:px-8"> |
| 45 | + <header> |
| 46 | + <SectionHeading as="h2" variant="title"> |
| 47 | + What we offer |
| 48 | + </SectionHeading> |
| 49 | + <SectionHeading as="p" variant="subtitle" className="mt-6"> |
| 50 | + Work/life, balanced |
| 51 | + </SectionHeading> |
| 52 | + </header> |
| 53 | + |
| 54 | + <div className="mt-20 lg:col-span-2 lg:mt-0"> |
| 55 | + <dl className="grid grid-cols-1 gap-12 sm:grid-flow-col sm:grid-cols-2 sm:grid-rows-4"> |
| 56 | + {features.map((feature) => ( |
| 57 | + <div key={feature.name} className="relative"> |
| 58 | + <dt> |
| 59 | + <CheckIcon |
| 60 | + className="absolute mt-1 h-6 w-6 text-blue-500 dark:text-sky-500" |
| 61 | + aria-hidden="true" |
| 62 | + /> |
| 63 | + <p className="ml-10 text-lg font-semibold leading-8 tracking-tight text-slate-800 dark:text-slate-200"> |
| 64 | + {feature.name} |
| 65 | + </p> |
| 66 | + </dt> |
| 67 | + <dd className="ml-10 mt-2 text-base leading-7"> |
| 68 | + {feature.description} |
| 69 | + </dd> |
| 70 | + </div> |
| 71 | + ))} |
| 72 | + </dl> |
| 73 | + </div> |
| 74 | + </article> |
| 75 | + ); |
| 76 | +} |
0 commit comments