Files
agentic-dev/apps/web-next/src/app/about/page.tsx
danijel-lf ee45bfe932 refactor(web-next): thin app pages that just render feature components
Pages import feature server components and pass only route-derived
props (slug, id). All data fetching, prefetch, and hydration is owned
by the feature's .server.tsx component.
2026-05-26 15:59:01 +02:00

13 lines
275 B
TypeScript

import { PageContent } from "@repo/marketing-pages/ui";
import { bindAll } from "../../server/bind-production";
export default async function AboutPage() {
await bindAll();
return (
<main className="px-6 py-8">
<PageContent slug="about" />
</main>
);
}