diff --git a/blitz-app/src/app/home/HomePageContent.tsx b/blitz-app/src/app/home/HomePageContent.tsx
index cd39ab6..25ac7a4 100644
--- a/blitz-app/src/app/home/HomePageContent.tsx
+++ b/blitz-app/src/app/home/HomePageContent.tsx
@@ -7,17 +7,69 @@ import Image from 'next/image'
import Link from 'next/link'
import { Suspense } from 'react'
+import useSubscriptionLevel from 'src/app/users/hooks/useSubscriptionLevel'
import { LadderlyPageWrapper } from 'src/core/components/page-wrapper/LadderlyPageWrapper'
import PricingGrid from 'src/core/components/pricing-grid/PricingGrid'
-import useSubscriptionLevel from 'src/app/users/hooks/useSubscriptionLevel'
+import React from 'react'
import styles from 'src/app/styles/Home.module.css'
+type Testimonial = {
+ testimonialGiverName: string
+ testimonialLinkedInUrl: string
+ testimonialText: string
+}
+
+const defaulTestimonial: Testimonial = {
+ testimonialGiverName: 'Calvin He',
+ testimonialLinkedInUrl: 'https://www.linkedin.com/in/calvin-h-he/',
+ testimonialText: `Ladderly.io's advice and Leetcode Kata helped me fill in the gaps from my web development boot camp. Without John's generous resume review and career advice, I wouldn't have landed my remote job this year!`,
+}
+
+const testimonials: Testimonial[] = [
+ defaulTestimonial,
+ {
+ testimonialGiverName: 'Chris Flannery',
+ testimonialLinkedInUrl: 'https://www.linkedin.com/in/chriswillsflannery/',
+ testimonialText: `The Ladderly Leetcode Kata is awesome. After using it for about two months, I'm notably more efficient and confident in coding interviews.`,
+ },
+ {
+ testimonialGiverName: 'Pratik Thorat',
+ testimonialLinkedInUrl: 'https://www.linkedin.com/in/pratikwebworks/',
+ testimonialText: `I just got off of an interview that I obtained thanks to Ladderly's Networking Scripts. My resume was passed down to the hiring manager. I owe everything to John and Ladderly.io's open-source curriculum!`,
+ },
+]
+
+const TestimonialBlock = () => {
+ const randomTestimonial =
+ testimonials[Math.floor(Math.random() * testimonials.length)] ??
+ defaulTestimonial
+
+ return (
+