"use client" import Link from "next/link" import { ChevronLeft, Clock, MessageCircle, BookOpen, Users, Award, TrendingUp } from "lucide-react" import { Button } from "@/components/ui/button" import { useState } from "react" import { QRCodeModal } from "@/components/modules/marketing/qr-code-modal" import { useStore } from "@/lib/store" export default function AboutPage() { const [showQRModal, setShowQRModal] = useState(false) const { settings } = useStore() const authorInfo = settings?.authorInfo || { name: "卡若", description: "连续创业者,私域运营专家", liveTime: "06:00-09:00", platform: "Soul派对房", } const milestones = [ { year: "2012", event: "开始做游戏推广,从魔兽世界外挂代理起步" }, { year: "2015", event: "转型电商,做天猫虚拟充值,月流水380万" }, { year: "2017", event: "团队扩张到200人,年流水3000万" }, { year: "2018", event: "公司破产,负债数百万,开始全国旅行反思" }, { year: "2019", event: "重新出发,专注私域运营和个人IP" }, { year: "2024", event: "在Soul派对房每日直播,分享真实商业故事" }, ] const stats = [ { icon: BookOpen, value: "55+", label: "真实案例" }, { icon: Users, value: "10000+", label: "派对房听众" }, { icon: Award, value: "15年", label: "创业经验" }, { icon: TrendingUp, value: "3000万", label: "最高年流水" }, ] return (
{/* Header */}
返回

关于作者

{/* Author Card */}
{authorInfo.name.charAt(0)}

{authorInfo.name}

{authorInfo.description}

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

{stat.value}

{stat.label}

))}
{/* Introduction */}

关于这本书

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

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

我见过凌晨四点还在撸运费险的年轻人,见过七十岁还在开滴滴做生意的老人, 见过一个月赚七八块却拼命倒卖游戏金币的大学生。

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

这本书,就是把那些在派对房里讲过的、能让人清醒的故事,整理成文字。每个案例都真实发生过,每个教训都是用钱换来的。

{/* Timeline */}

创业历程

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

{item.year}

{item.event}

))}
{/* CTA */}

想听更多真实故事?

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

setShowQRModal(false)} />
) }