diff --git a/client/i18n/locales/english/translations.json b/client/i18n/locales/english/translations.json
index 4613d999fe6..036f9b6a1c9 100644
--- a/client/i18n/locales/english/translations.json
+++ b/client/i18n/locales/english/translations.json
@@ -401,21 +401,7 @@
"welcome-1": "Welcome back, {{name}}.",
"welcome-2": "Welcome to freeCodeCamp.org",
"start-at-beginning": "If you are new to coding, we recommend you <0>start at the beginning0>.",
- "read-this": {
- "heading": "Please slow down and read this.",
- "p1": "freeCodeCamp is a proven path to your first software developer job.",
- "p2": "More than 40,000 people have gotten developer jobs after completing this – including at big companies like Google and Microsoft.",
- "p3": "If you are new to programming, we recommend you start at the beginning and earn these certifications in order.",
- "p4": "To earn each certification, build its 5 required projects and get all their tests to pass.",
- "p5": "You can add these certifications to your résumé or LinkedIn. But more important than the certifications is the practice you get along the way.",
- "p6": "If you feel overwhelmed, that is normal. Programming is hard.",
- "p7": "Practice is the key. Practice, practice, practice.",
- "p8": "And this curriculum will give you thousands of hours of hands-on programming practice.",
- "p9": "And if you want to learn more math and computer science theory, we also have thousands of hours of video courses on <0>freeCodeCamp's YouTube channel0>.",
- "p10": "If you want to get a developer job or freelance clients, programming skills will be just part of the puzzle. You also need to build your personal network and your reputation as a developer.",
- "p11": "You can do this on LinkedIn and GitHub, and also on <0>the freeCodeCamp forum0>.",
- "p12": "Happy coding!"
- },
+ "happy-coding": "Happy coding!",
"upcoming-lessons": "Upcoming Lessons",
"learn": "Learn",
"add-subtitles": "Help improve or add subtitles",
@@ -795,7 +781,7 @@
"brand-new-account": "Welcome to your brand new freeCodeCamp account. Let's get started.",
"duplicate-account-warning": "If you meant to sign into an existing account instead of creating this account, <0>click here to delete this account0> and try another email address.",
"quincy": "- Quincy Larson, the teacher who founded freeCodeCamp.org",
- "email-blast": "By the way, each Friday I send an email with 5 links about programming and computer science. I send these to about 6 million people. Would you like me to send this to you, too?",
+ "email-blast": "Each Friday I send an email with 5 links about programming and computer science. I send these to about 6 million people. Would you like me to send this to you, too?",
"update-email-1": "Update your email address",
"update-email-2": "Update your email address here:",
"email": "Email",
diff --git a/client/src/components/Intro/components/intro-description.tsx b/client/src/components/Intro/components/intro-description.tsx
deleted file mode 100644
index 3360bfb3b7a..00000000000
--- a/client/src/components/Intro/components/intro-description.tsx
+++ /dev/null
@@ -1,60 +0,0 @@
-import React from 'react';
-import { Trans, useTranslation } from 'react-i18next';
-import { Spacer } from '@freecodecamp/ui';
-import envData from '../../../../config/env.json';
-import { Link } from '../../helpers';
-
-import '../intro.css';
-
-const { forumLocation } = envData;
-function IntroDescription(): JSX.Element {
- const { t } = useTranslation();
-
- return (
-