import type { Page } from "@/db/schema"; import { ContentBody } from "./ContentBody"; /** Static-page rendering, shared by /pages/[slug], the home page, and previews. */ export function PageArticle({ page }: { page: Page }) { return (

{page.title}

); }