diff --git a/src/components/Nav.tsx b/src/components/Nav.tsx
index ab4e2fbc..10f85488 100644
--- a/src/components/Nav.tsx
+++ b/src/components/Nav.tsx
@@ -89,7 +89,7 @@ export function Nav(): React.ReactElement {
 					<Spacer x={0.5} />
 					<Link href="/signup">
 						<Button auto type="success">
-							Get Started - 50 free emails
+							Sign up
 						</Button>
 					</Link>
 				</>
diff --git a/src/components/ProductCard/FreeTrial.tsx b/src/components/ProductCard/FreeTrial.tsx
deleted file mode 100644
index 68272b82..00000000
--- a/src/components/ProductCard/FreeTrial.tsx
+++ /dev/null
@@ -1,62 +0,0 @@
-import { Button } from "@geist-ui/react";
-import React from "react";
-
-import { productName } from "@/util/subs";
-import { Card } from "./Card";
-
-export interface FreeTrialProps {
-	active: boolean;
-	currency: string;
-}
-
-export function FreeTrial({
-	active,
-	currency,
-}: FreeTrialProps): React.ReactElement {
-	const priceString = new Intl.NumberFormat("en-US", {
-		style: "currency",
-		currency,
-		minimumFractionDigits: 0,
-	}).format(0);
-
-	return (
-		<Card
-			cta={
-				<Button className="full-width" disabled type="secondary">
-					{active ? "Current Plan" : "Not available"}
-				</Button>
-			}
-			features={features}
-			header="Free Forever"
-			subtitle={<span>50 email verifications / mo</span>}
-			title={productName()}
-			price={priceString}
-		/>
-	);
-}
-
-const features = [
-	"Use Reacher's servers with high IP reputation.",
-	<span key="freeTrial-2">
-		<a
-			href="https://help.reacher.email/email-attributes-inside-json"
-			target="_blank"
-			rel="noopener noreferrer"
-		>
-			Full-featured
-		</a>{" "}
-		email verifications.
-	</span>,
-	<span key="freeTrial-3">
-		Support via{" "}
-		<a
-			href="https://github.com/reacherhq/check-if-email-exists"
-			target="_blank"
-			rel="noopener noreferrer"
-		>
-			Github Issues
-		</a>
-		.
-	</span>,
-	"No credit card required.",
-];
diff --git a/src/components/ProductCard/index.ts b/src/components/ProductCard/index.ts
index d5df76bd..c4654fbb 100644
--- a/src/components/ProductCard/index.ts
+++ b/src/components/ProductCard/index.ts
@@ -1,4 +1,3 @@
 export * from "./Commercial";
-export * from "./FreeTrial";
 export * from "./SaaS10k";
 export * from "./SaaS100k";
diff --git a/src/pages/signup.tsx b/src/pages/signup.tsx
index 0a72a40a..95cf7ffe 100644
--- a/src/pages/signup.tsx
+++ b/src/pages/signup.tsx
@@ -117,11 +117,6 @@ export default function SignUp(): React.ReactElement {
 
 	return (
 		<SigninLayout title="Sign Up">
-			<p className="text-center">
-				<small>
-					<em>50 free email verifications when you sign up.</em>
-				</small>
-			</p>
 			<Input
 				type="email"
 				placeholder="Email"