From b6eee12bd8caef6929f200f245cc4131132e6f90 Mon Sep 17 00:00:00 2001 From: Ajax Davis Date: Thu, 27 Nov 2025 23:25:55 +1000 Subject: [PATCH] feat: simplify homepage to only show hero section MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove ProblemSection, VisionSection, EcosystemStats, and DeveloperStories - Keep only Header, HeroSection, and Footer - Cleaner, more focused landing page experience 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- apps/web/src/app/page.tsx | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/apps/web/src/app/page.tsx b/apps/web/src/app/page.tsx index 3360a1e..769ec0a 100644 --- a/apps/web/src/app/page.tsx +++ b/apps/web/src/app/page.tsx @@ -3,11 +3,7 @@ import { Container } from '@tpmjs/ui/Container/Container'; import { Header } from '@tpmjs/ui/Header/Header'; import Link from 'next/link'; import { ThemeToggle } from '../components/ThemeToggle'; -import { DeveloperStories } from '../components/home/DeveloperStories'; -import { EcosystemStats } from '../components/home/EcosystemStats'; import { HeroSection } from '../components/home/HeroSection'; -import { ProblemSection } from '../components/home/ProblemSection'; -import { VisionSection } from '../components/home/VisionSection'; export default function HomePage(): React.ReactElement { return ( @@ -55,18 +51,6 @@ export default function HomePage(): React.ReactElement {
{/* Hero Section - Dithered Design */} - - {/* Problem Section - The fragmented world before tpmjs */} - - - {/* Vision Section - The dynamic ecosystem with tpmjs */} - - - {/* Ecosystem Stats - Live metrics with dithered counters */} - - - {/* Developer Stories - Code-first testimonials */} -
{/* Footer */}