"use client" import { useState } from "react" import { useRouter } from "next/navigation" import { Clock, MessageCircle, BookOpen, Users, Award, TrendingUp, ArrowLeft } from "lucide-react" import { QRCodeModal } from "@/components/modules/marketing/qr-code-modal" import { useStore } from "@/lib/store" export default function AboutPage() { const router = useRouter() const [showQRModal, setShowQRModal] = useState(false) const { settings } = useStore() const authorInfo = settings?.authorInfo || { name: "卡若", description: "连续创业者,私域运营专家", liveTime: "06:00-09:00", platform: "Soul派对房", } const stats = [ { icon: BookOpen, value: "55+", label: "真实案例" }, { icon: Users, value: "10000+", label: "派对房听众" }, { icon: Award, value: "15年", label: "创业经验" }, { icon: TrendingUp, value: "3000万", label: "最高年流水" }, ] const milestones = [ { year: "2007-2014", event: "游戏电竞创业历程,从魔兽世界代练起步" }, { year: "2015", event: "转型电商,做天猫虚拟充值" }, { year: "2016-2019", event: "深耕电商领域,团队扩张到200人,年流水3000万" }, { year: "2019-2020", event: "公司变故,重整旗鼓" }, { year: "2020-2025", event: "电竞、地摊、大健康、私域多领域探索" }, { year: "2025.10.15", event: "在Soul派对房开启每日分享,记录真实商业案例" }, ] return (

关于作者

{authorInfo.name.charAt(0)}

{authorInfo.name}

{authorInfo.description}

每日 {authorInfo.liveTime} {authorInfo.platform}
{stats.map((stat, index) => (

{stat.value}

{stat.label}

))}
{/* 关于这本书 */}

关于这本书

"这不是一本教你成功的鸡汤书。"

这是我每天早上6点到9点,在Soul派对房和几百个陌生人分享的真实故事。

"社会不是靠努力,是靠洞察与选择。"

创业历程

{milestones.map((item, index) => (
{index < milestones.length - 1 &&
}

{item.year}

{item.event}

))}

想听更多真实故事?

每天早上6-9点,卡若在Soul派对房免费分享

setShowQRModal(false)} />
) }