Vercel/app/about/edit/page.tsx
Strtus 8e6df1e70c Simplify About page to title, subhead, and description only.
Remove avatar/hero photos and gallery stats from the public About view and admin editor, and add env-backed defaults for ABOUT_TITLE and ABOUT_SUBHEAD.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-20 17:16:31 +08:00

10 lines
288 B
TypeScript

import AdminAboutEditPage from '@/about/AdminAboutEditPage';
import { getAboutData } from '@/about/data';
export default async function AboutEditPage() {
const { about } = await getAboutData()
.catch(() => ({ about: undefined }));
return <AdminAboutEditPage about={about} />;
}