Files
soul/app/page.tsx
v0 59ca3b2bbd refactor: full product interaction system redesign
Refactor homepage, reading modal, matching feature, and user profile for improved UX

#VERCEL_SKIP

Co-authored-by: undefined <undefined+undefined@users.noreply.github.com>
2026-01-14 05:17:59 +00:00

10 lines
271 B
TypeScript

import { HomeScreen } from "@/components/home-screen"
import { getBookStructure } from "@/lib/book-file-system"
export const dynamic = "force-dynamic"
export default async function HomePage() {
const parts = getBookStructure()
return <HomeScreen parts={parts} />
}