diff --git a/apps/portal/src/components/resumes/landing/Container.tsx b/apps/portal/src/components/resumes/landing/Container.tsx index 3a975859..94d35463 100644 --- a/apps/portal/src/components/resumes/landing/Container.tsx +++ b/apps/portal/src/components/resumes/landing/Container.tsx @@ -9,7 +9,7 @@ type ContainerProps = { export const Container: FC = ({ className, ...props }) => { return (
); diff --git a/apps/portal/src/components/resumes/landing/PrimaryFeatures.tsx b/apps/portal/src/components/resumes/landing/PrimaryFeatures.tsx index 51b3c5a0..b2fedb17 100644 --- a/apps/portal/src/components/resumes/landing/PrimaryFeatures.tsx +++ b/apps/portal/src/components/resumes/landing/PrimaryFeatures.tsx @@ -4,27 +4,27 @@ import { useEffect, useState } from 'react'; import { Tab } from '@headlessui/react'; import { Container } from './Container'; -import screenshotExpenses from './images/screenshots/expenses.png'; -import screenshotPayroll from './images/screenshots/payroll.png'; -import screenshotVatReturns from './images/screenshots/vat-returns.png'; +import resumeBrowse from './images/screenshots/resumes-browse.png'; +import resumeReview from './images/screenshots/resumes-review.png'; +import resumeSubmit from './images/screenshots/resumes-submit.png'; const features = [ { description: 'Browse the most popular reviewed resumes out there and see what you can learn', - image: screenshotPayroll, + image: resumeBrowse, title: 'Browse', }, { description: 'Upload your own resume easily to get feedback from people in industry.', - image: screenshotExpenses, + image: resumeSubmit, title: 'Submit', }, { description: 'Pass the baton forward by reviewing resumes and bounce off ideas with other engineers out there.', - image: screenshotVatReturns, + image: resumeReview, title: 'Review', }, ]; @@ -49,7 +49,6 @@ export function PrimaryFeatures() { return (
@@ -64,7 +63,7 @@ export function PrimaryFeatures() { vertical={tabOrientation === 'vertical'}> {({ selectedIndex }) => ( <> -
+
{features.map((feature, featureIndex) => (
- + {features.map((feature) => (
diff --git a/apps/portal/src/components/resumes/landing/Testimonials.tsx b/apps/portal/src/components/resumes/landing/Testimonials.tsx index f7db5f1e..ad43f019 100644 --- a/apps/portal/src/components/resumes/landing/Testimonials.tsx +++ b/apps/portal/src/components/resumes/landing/Testimonials.tsx @@ -94,7 +94,6 @@ function QuoteIcon(props: QuoteProps) { export function Testimonials() { return (
diff --git a/apps/portal/src/components/resumes/landing/images/screenshots/contacts.png b/apps/portal/src/components/resumes/landing/images/screenshots/contacts.png deleted file mode 100644 index 5901470b..00000000 Binary files a/apps/portal/src/components/resumes/landing/images/screenshots/contacts.png and /dev/null differ diff --git a/apps/portal/src/components/resumes/landing/images/screenshots/expenses.png b/apps/portal/src/components/resumes/landing/images/screenshots/expenses.png deleted file mode 100644 index ca35472e..00000000 Binary files a/apps/portal/src/components/resumes/landing/images/screenshots/expenses.png and /dev/null differ diff --git a/apps/portal/src/components/resumes/landing/images/screenshots/inventory.png b/apps/portal/src/components/resumes/landing/images/screenshots/inventory.png deleted file mode 100644 index b98721c6..00000000 Binary files a/apps/portal/src/components/resumes/landing/images/screenshots/inventory.png and /dev/null differ diff --git a/apps/portal/src/components/resumes/landing/images/screenshots/payroll.png b/apps/portal/src/components/resumes/landing/images/screenshots/payroll.png deleted file mode 100644 index 16f5b5a7..00000000 Binary files a/apps/portal/src/components/resumes/landing/images/screenshots/payroll.png and /dev/null differ diff --git a/apps/portal/src/components/resumes/landing/images/screenshots/profit-loss.png b/apps/portal/src/components/resumes/landing/images/screenshots/profit-loss.png deleted file mode 100644 index 229df78a..00000000 Binary files a/apps/portal/src/components/resumes/landing/images/screenshots/profit-loss.png and /dev/null differ diff --git a/apps/portal/src/components/resumes/landing/images/screenshots/reporting.png b/apps/portal/src/components/resumes/landing/images/screenshots/reporting.png deleted file mode 100644 index 72b5e8e9..00000000 Binary files a/apps/portal/src/components/resumes/landing/images/screenshots/reporting.png and /dev/null differ diff --git a/apps/portal/src/components/resumes/landing/images/screenshots/resumes-browse.png b/apps/portal/src/components/resumes/landing/images/screenshots/resumes-browse.png new file mode 100644 index 00000000..6bdc81c9 Binary files /dev/null and b/apps/portal/src/components/resumes/landing/images/screenshots/resumes-browse.png differ diff --git a/apps/portal/src/components/resumes/landing/images/screenshots/resumes-review.png b/apps/portal/src/components/resumes/landing/images/screenshots/resumes-review.png new file mode 100644 index 00000000..1a6b466a Binary files /dev/null and b/apps/portal/src/components/resumes/landing/images/screenshots/resumes-review.png differ diff --git a/apps/portal/src/components/resumes/landing/images/screenshots/resumes-submit.png b/apps/portal/src/components/resumes/landing/images/screenshots/resumes-submit.png new file mode 100644 index 00000000..ccfcce1f Binary files /dev/null and b/apps/portal/src/components/resumes/landing/images/screenshots/resumes-submit.png differ diff --git a/apps/portal/src/components/resumes/landing/images/screenshots/vat-returns.png b/apps/portal/src/components/resumes/landing/images/screenshots/vat-returns.png deleted file mode 100644 index 3dd043bd..00000000 Binary files a/apps/portal/src/components/resumes/landing/images/screenshots/vat-returns.png and /dev/null differ diff --git a/apps/portal/src/pages/resumes/index.tsx b/apps/portal/src/pages/resumes/index.tsx index 4f84c9d1..ae063c0b 100644 --- a/apps/portal/src/pages/resumes/index.tsx +++ b/apps/portal/src/pages/resumes/index.tsx @@ -3,7 +3,6 @@ import Head from 'next/head'; import { CallToAction } from '~/components/resumes/landing/CallToAction'; import { Hero } from '~/components/resumes/landing/Hero'; import { PrimaryFeatures } from '~/components/resumes/landing/PrimaryFeatures'; -import { Testimonials } from '~/components/resumes/landing/Testimonials'; export default function Home() { return ( @@ -16,7 +15,6 @@ export default function Home() { - );