diff --git a/apps/portal/src/components/resumes/landing/Button.jsx b/apps/portal/src/components/resumes/landing/Button.jsx
deleted file mode 100644
index 9d8c3ecc..00000000
--- a/apps/portal/src/components/resumes/landing/Button.jsx
+++ /dev/null
@@ -1,45 +0,0 @@
-import clsx from 'clsx';
-import Link from 'next/link';
-
-const baseStyles = {
- outline:
- 'group inline-flex ring-1 items-center justify-center rounded-full py-2 px-4 text-sm focus:outline-none',
- solid:
- 'group inline-flex items-center justify-center rounded-full py-2 px-4 text-sm font-semibold focus:outline-none focus-visible:outline-2 focus-visible:outline-offset-2',
-};
-
-const variantStyles = {
- outline: {
- slate:
- 'ring-slate-200 text-slate-700 hover:text-slate-900 hover:ring-slate-300 active:bg-slate-100 active:text-slate-600 focus-visible:outline-blue-600 focus-visible:ring-slate-300',
- white:
- 'ring-slate-700 text-white hover:ring-slate-500 active:ring-slate-700 active:text-slate-400 focus-visible:outline-white',
- },
- solid: {
- blue: 'bg-blue-600 text-white hover:text-slate-100 hover:bg-blue-500 active:bg-blue-800 active:text-blue-100 focus-visible:outline-blue-600',
- slate:
- 'bg-slate-900 text-white hover:bg-slate-700 hover:text-slate-100 active:bg-slate-800 active:text-slate-300 focus-visible:outline-slate-900',
- white:
- 'bg-white text-slate-900 hover:bg-blue-50 active:bg-blue-200 active:text-slate-600 focus-visible:outline-white',
- },
-};
-
-export function Button({
- variant = 'solid',
- color = 'slate',
- className,
- href,
- ...props
-}) {
- className = clsx(
- baseStyles[variant],
- variantStyles[variant][color],
- className,
- );
-
- return href ? (
-
- ) : (
-
- );
-}
diff --git a/apps/portal/src/components/resumes/landing/CallToAction.jsx b/apps/portal/src/components/resumes/landing/CallToAction.jsx
deleted file mode 100644
index b4f8f455..00000000
--- a/apps/portal/src/components/resumes/landing/CallToAction.jsx
+++ /dev/null
@@ -1,36 +0,0 @@
-import Image from 'next/future/image';
-
-import { Button } from './Button';
-import { Container } from './Container';
-import backgroundImage from './images/background-call-to-action.jpg';
-
-export function CallToAction() {
- return (
-
- It's free! Take charge of your resume game by learning from the top
- engineers in the field.
-
+ It's free! Take charge of your resume game by learning from the top
+ engineers in the field.
+
- Resume review can start right now.
-
-
+ Resume review can start right now.
+
+