Refactor homepage, reading modal, matching feature, and user profile for improved UX #VERCEL_SKIP Co-authored-by: undefined <undefined+undefined@users.noreply.github.com>
10 lines
271 B
TypeScript
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} />
|
|
}
|