From 105d692fa029cd349c313b899f9fc54d277b0919 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 16 Jul 2026 12:03:27 +0000 Subject: [PATCH] Reposition landing page as free companion to Project Amazon PH Academy Rebrand as "Project Amazon PH Interview Lab" across nav, footer, and site metadata. Replace the paid pricing tiers with a free-vs-Academy comparison: Interview Lab is 100% free, Project Amazon PH Academy (amph-v2) is the paid deep-dive course for after landing the role. Update FAQ to reflect the free model and the relationship between the two products. Also fixes a stray "" HTML comment left after the closing brace in page.tsx that broke TSX parsing and 500'd the app. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01X72jMWBUM3xirKsc9hZKE3 --- src/app/layout.tsx | 42 ++++---- src/app/page.tsx | 2 - src/components/interview-lab/LandingPage.tsx | 104 ++++++++++--------- 3 files changed, 77 insertions(+), 71 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1f5c3a1..8bcc948 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -34,41 +34,42 @@ export const viewport: Viewport = { export const metadata: Metadata = { metadataBase: new URL(BASE_URL), title: { - default: "Interview Lab — AI-Powered Amazon VA Interview Preparation", - template: "%s | Interview Lab", + default: "Project Amazon PH Interview Lab — Free AI Interview Prep for Amazon VAs", + template: "%s | Project Amazon PH Interview Lab", }, description: - "Get interview-ready for Amazon VA roles with AI mock interviews, resume coaching, cover letter writing, practice tests, and downloadable templates for PPC, Account, Listing, Reporting, and Agency VA positions.", + "Free AI mock interviews, resume coaching, cover letter writing, practice tests, and downloadable templates for Amazon VA roles — PPC, Account, Listing, Reporting, and Agency VA. A free companion to Project Amazon PH Academy.", keywords: [ "Amazon VA", "Amazon PPC VA", "Amazon Account VA", "Amazon Listing VA", "Amazon Reporting VA", "Amazon Agency VA", "VA interview prep", "mock interview", "resume builder", "cover letter", "Amazon VA training", "Seller Central", "virtual assistant Philippines", "work from home jobs", + "Project Amazon PH Academy", ], authors: [{ name: "Ryan Roland Dabao", url: "https://projectamazonph.com" }], creator: "Ryan Roland Dabao", publisher: "ProjectAmazonPH", openGraph: { - title: "Interview Lab — AI-Powered Amazon VA Interview Preparation", - description: "Get interview-ready for Amazon VA roles with AI mock interviews, resume coaching, cover letter writing, and practice tests.", + title: "Project Amazon PH Interview Lab — Free AI Interview Prep for Amazon VAs", + description: "Free AI mock interviews, resume coaching, cover letter writing, and practice tests for Amazon VA roles. A free companion to Project Amazon PH Academy.", type: "website", locale: "en_US", - siteName: "Interview Lab", + siteName: "Project Amazon PH Interview Lab", url: BASE_URL, images: [ { url: "/og/il-og.png", width: 1200, height: 630, - alt: "Interview Lab — Built by ProjectAmazonPH", + alt: "Project Amazon PH Interview Lab — Built by ProjectAmazonPH", }, ], }, twitter: { card: "summary_large_image", - title: "Interview Lab — AI-Powered Amazon VA Interview Preparation", - description: "Get interview-ready for Amazon VA roles with AI mock interviews, resume coaching, cover letter writing, and practice tests.", + title: "Project Amazon PH Interview Lab — Free AI Interview Prep for Amazon VAs", + description: "Free AI mock interviews, resume coaching, cover letter writing, and practice tests for Amazon VA roles.", site: "@ProjectAmazonPH", creator: "@ProjectAmazonPH", }, @@ -90,7 +91,7 @@ export const metadata: Metadata = { appleWebApp: { capable: true, statusBarStyle: "black-translucent", - title: "Interview Lab", + title: "PAPH Interview Lab", }, icons: { icon: [ @@ -108,8 +109,13 @@ const structuredData = { { "@type": "Organization", "@id": `${BASE_URL}/#organization`, - name: "Interview Lab", + name: "Project Amazon PH Interview Lab", url: BASE_URL, + parentOrganization: { + "@type": "Organization", + name: "ProjectAmazonPH", + url: "https://projectamazonph.com", + }, logo: { "@type": "ImageObject", url: `${BASE_URL}/icons/icon-180.png`, @@ -130,9 +136,9 @@ const structuredData = { "@type": "WebSite", "@id": `${BASE_URL}/#website`, url: BASE_URL, - name: "Interview Lab", + name: "Project Amazon PH Interview Lab", publisher: { "@id": `${BASE_URL}/#organization` }, - description: "AI-powered mock interviews and interview preparation for Amazon VA roles.", + description: "Free AI-powered mock interviews and interview preparation for Amazon VA roles.", inLanguage: "en-US", potentialAction: { "@type": "SearchAction", @@ -144,7 +150,7 @@ const structuredData = { "@type": "WebPage", "@id": `${BASE_URL}/#webpage`, url: BASE_URL, - name: "Interview Lab — AI-Powered Amazon VA Interview Preparation", + name: "Project Amazon PH Interview Lab — Free AI-Powered Amazon VA Interview Preparation", isPartOf: { "@id": `${BASE_URL}/#website` }, about: { "@id": `${BASE_URL}/#organization` }, description: "Get interview-ready for Amazon VA roles with AI mock interviews, resume coaching, cover letter writing, practice tests, and downloadable templates.", @@ -154,17 +160,17 @@ const structuredData = { }, { "@type": "SoftwareApplication", - name: "Interview Lab", + name: "Project Amazon PH Interview Lab", "@id": `${BASE_URL}/#app`, url: BASE_URL, - description: "AI-powered mock interviews and interview preparation for Amazon VA roles.", + description: "Free AI-powered mock interviews and interview preparation for Amazon VA roles. A free companion to Project Amazon PH Academy.", applicationCategory: "EducationApplication", operatingSystem: "Web", offers: { "@type": "Offer", price: "0", priceCurrency: "PHP", - description: "Free tier with 264+ interview questions and AI coaching", + description: "Free, always — 264+ interview questions, AI coaching, resume review, and practice tests", }, aggregateRating: { "@type": "AggregateRating", @@ -223,7 +229,7 @@ const structuredData = { name: "Is the platform free to use?", acceptedAnswer: { "@type": "Answer", - text: "Yes, we offer a free tier with access to interview questions, AI coaching, and basic features.", + text: "Yes, Interview Lab is 100% free — mock interviews, the question bank, AI coaching, resume review, and more, no card required. It's a free companion to Project Amazon PH Academy.", }, }, ], diff --git a/src/app/page.tsx b/src/app/page.tsx index 429a09e..2395e0e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -116,5 +116,3 @@ export default function Home() { ); } - - diff --git a/src/components/interview-lab/LandingPage.tsx b/src/components/interview-lab/LandingPage.tsx index 2e0c95b..f16e8c4 100644 --- a/src/components/interview-lab/LandingPage.tsx +++ b/src/components/interview-lab/LandingPage.tsx @@ -62,10 +62,10 @@ const TESTIMONIALS = [ ]; const FAQ = [ - { q: "Can I switch plans at any time?", a: "Yes. Upgrade or downgrade anytime. Upgrades give immediate access. Downgrades take effect at billing period end." }, - { q: "Is there a free trial?", a: "The Free plan lets you explore the platform with limited access. Paid plans unlock everything from day one." }, - { q: "What payment methods?", a: "GCash, all major credit cards, and debit cards. All prices in Philippine Peso." }, - { q: "Can I cancel?", a: "Cancel anytime from account settings. Access continues until the end of your billing period." }, + { q: "Is Interview Lab really free?", a: "Yes. Mock interviews, the question bank, resume review, cover letters, practice tests — all of it, no card required. It's built as a free companion to Project Amazon PH Academy." }, + { q: "What's the difference between Interview Lab and the Academy?", a: "Interview Lab gets you ready for the interview: questions, mock practice, resume feedback. Project Amazon PH Academy is the paid, in-depth training — full Amazon ads courses, tools, and certifications for after you're hired." }, + { q: "Do I need the Academy to use Interview Lab?", a: "No. Interview Lab stands on its own. The Academy is there if you want to go deeper once you've landed the role." }, + { q: "Which Amazon VA roles does it cover?", a: "PPC, Account, Listing, Reporting, Agency, and Senior PPC — six role-specific tracks, each with its own questions and mock interviews." }, ]; export function LandingPage({ onGetStarted, onViewPrograms }: LandingPageProps) { @@ -89,12 +89,15 @@ export function LandingPage({ onGetStarted, onViewPrograms }: LandingPageProps)
- Interview Lab +
+ Interview Lab + by Project Amazon PH +
{/* Desktop links */}
- {["Why This", "VA Roles", "Features", "Pricing"].map((link) => ( + {["Why This", "VA Roles", "Features", "Academy"].map((link) => (
- {["Why This", "VA Roles", "Features", "Pricing"].map((link, i) => ( + {["Why This", "VA Roles", "Features", "Academy"].map((link, i) => ( - Built for Filipino VAs targeting Amazon roles + 100% free — a Project Amazon PH tool @@ -172,7 +175,7 @@ export function LandingPage({ onGetStarted, onViewPrograms }: LandingPageProps) className="text-text-secondary text-lg sm:text-xl max-w-2xl mx-auto leading-relaxed mb-12 font-body" > The exact questions agencies ask, AI coaching that shows you how to answer, - and the confidence to finally land that Amazon VA role. + and the confidence to finally land that Amazon VA role — free, no card required. @@ -184,6 +187,13 @@ export function LandingPage({ onGetStarted, onViewPrograms }: LandingPageProps) Try a Practice Test + + + No card, no trial countdown. Built free by the team behind{" "} + + Project Amazon PH Academy + . +
@@ -407,8 +417,8 @@ export function LandingPage({ onGetStarted, onViewPrograms }: LandingPageProps)
- {/* ═══════════════════ PRICING ═══════════════════ */} -
+ {/* ═══════════════════ ACADEMY (formerly Pricing) ═══════════════════ */} +
- Simple Pricing + Free Tool, Paid Academy - Start Free. Upgrade When Ready. + Get Hired Free. Go Deeper When You're Ready. + + Interview Lab gets you interview-ready at zero cost. Project Amazon PH Academy + is the paid, in-depth training for after you land the role. + - {/* Free */} + {/* Interview Lab — Free */} - - Free -
₱0
-
Get started with basic prep
- - Get Started - -
    - {["1 mock interview per week", "Beginner question bank", "Basic resume review", "Free downloads"].map((f) => ( -
  • - - {f} -
  • - ))} -
-
-
- - {/* Pro — Highlighted */} - - - Most Popular - -
₱499/mo
-
Everything you need
+ Free Forever +
Interview Lab
+
Everything you need to land the interview
- Start 7-Day Free Trial + Start Free
    - {["5 mock interviews per week", "All question difficulties", "Unlimited resume reviews", "Unlimited cover letters", "Starter downloads", "Export to DOCX & PDF"].map((f) => ( + {["Unlimited mock interviews", "264+ question bank, all roles", "AI resume review", "Unlimited cover letters", "Practice tests & learning paths", "No card, no trial countdown"].map((f) => (
  • {f} @@ -475,17 +467,25 @@ export function LandingPage({ onGetStarted, onViewPrograms }: LandingPageProps) - {/* Premium */} - + {/* Project Amazon PH Academy — Paid */} + - Premium -
    ₱999/mo
    -
    For serious candidates
    - - Start Free Trial + + Paid Academy + +
    Project Amazon PH Academy
    +
    Structured courses for after you're hired — ₱2,999 to ₱9,999
    + window.open("https://projectamazonph.com", "_blank", "noopener,noreferrer")} + > + Explore the Academy +
      - {["Unlimited mock interviews", "Advanced question bank", "AI coaching with feedback", "Priority support", "All downloads", "Admin access"].map((f) => ( + {["Full Amazon ads course curriculum", "Campaign Builder & Bid Elevator tools", "Certificates recognized in our hiring pipeline", "Ultimate tier: weekly live classes + 1-on-1 review"].map((f) => (
    • {f} @@ -581,11 +581,13 @@ export function LandingPage({ onGetStarted, onViewPrograms }: LandingPageProps)
      Interview Lab + by Project Amazon PH
      Privacy Terms - © {year} Interview Lab + Academy + © {year} Project Amazon PH Interview Lab