feat: simplify homepage to only show hero section
- 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 <noreply@anthropic.com>
This commit is contained in:
parent
d19b1e2925
commit
b6eee12bd8
1 changed files with 0 additions and 16 deletions
|
|
@ -3,11 +3,7 @@ import { Container } from '@tpmjs/ui/Container/Container';
|
||||||
import { Header } from '@tpmjs/ui/Header/Header';
|
import { Header } from '@tpmjs/ui/Header/Header';
|
||||||
import Link from 'next/link';
|
import Link from 'next/link';
|
||||||
import { ThemeToggle } from '../components/ThemeToggle';
|
import { ThemeToggle } from '../components/ThemeToggle';
|
||||||
import { DeveloperStories } from '../components/home/DeveloperStories';
|
|
||||||
import { EcosystemStats } from '../components/home/EcosystemStats';
|
|
||||||
import { HeroSection } from '../components/home/HeroSection';
|
import { HeroSection } from '../components/home/HeroSection';
|
||||||
import { ProblemSection } from '../components/home/ProblemSection';
|
|
||||||
import { VisionSection } from '../components/home/VisionSection';
|
|
||||||
|
|
||||||
export default function HomePage(): React.ReactElement {
|
export default function HomePage(): React.ReactElement {
|
||||||
return (
|
return (
|
||||||
|
|
@ -55,18 +51,6 @@ export default function HomePage(): React.ReactElement {
|
||||||
<main className="flex-1">
|
<main className="flex-1">
|
||||||
{/* Hero Section - Dithered Design */}
|
{/* Hero Section - Dithered Design */}
|
||||||
<HeroSection />
|
<HeroSection />
|
||||||
|
|
||||||
{/* Problem Section - The fragmented world before tpmjs */}
|
|
||||||
<ProblemSection />
|
|
||||||
|
|
||||||
{/* Vision Section - The dynamic ecosystem with tpmjs */}
|
|
||||||
<VisionSection />
|
|
||||||
|
|
||||||
{/* Ecosystem Stats - Live metrics with dithered counters */}
|
|
||||||
<EcosystemStats />
|
|
||||||
|
|
||||||
{/* Developer Stories - Code-first testimonials */}
|
|
||||||
<DeveloperStories />
|
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
{/* Footer */}
|
{/* Footer */}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue