购买整本书,省82%
全部55节内容,永久阅读,后续更新免费获取
import Link from "next/link" import { ChevronLeft } from "lucide-react" import { Button } from "@/components/ui/button" import { specialSections, FULL_BOOK_PRICE } from "@/lib/book-data" import { getBookStructure } from "@/lib/book-file-system" import { ChaptersList } from "@/components/chapters-list" import { BuyFullBookButton } from "@/components/buy-full-book-button" export const dynamic = 'force-dynamic'; export default async function ChaptersPage() { const parts = getBookStructure() // Format special sections for the client component const specialSectionsData = { preface: { title: specialSections.preface.title }, epilogue: { title: specialSections.epilogue.title } } return (
全部55节内容,永久阅读,后续更新免费获取