import { BookCover } from "@/components/book-cover" import { BookIntro } from "@/components/book-intro" import { PurchaseSection } from "@/components/purchase-section" import { Footer } from "@/components/footer" import { MatchSection } from "@/components/match-section" import { getBookStructure } from "@/lib/book-file-system" import { Home, Sparkles, User } from "lucide-react" import Link from "next/link" export default async function HomePage() { const parts = getBookStructure() const totalChapters = parts.reduce((acc, part) => acc + part.chapters.length, 0) const totalSections = parts.reduce((acc, part) => { return acc + part.chapters.reduce((sum, ch) => sum + ch.sections.length, 0) }, 0) return (
{/* 顶部标签 */}
Soul · 派对房
{/* 核心标题区 */}

一场SOUL的
创业实验场

来自Soul派对房的真实商业故事

“社会不是靠努力,是靠洞察与选择”

{/* 核心数据卡片 */}
¥9.9
整本价格
{totalSections}
商业案例
{/* 作者卡片 */}
卡若
作者
卡若
每日直播
06:00-09:00
{/* 立即阅读按钮 */}
立即阅读

首章免费 · 部分章节3天后解锁

{/* 引用寄语 */}

这不是一本教你成功的鸡汤书。这是我每天早上6点到9点,在Soul派对房和几百个陌生人分享的真实故事。

卡若
Soul派对房主理人
{/* 核心亮点数据 */}
55+
真实案例
11
核心章节
100+
商业洞察
{/* 购买区域 */} {/* 匹配区域预览 */}
) }