import { getLandingContent } from "@/lib/landing"; import { updateLandingAction } from "@/app/admin/landing/actions"; export default async function AdminLandingPage() { const c = await getLandingContent(); const benefits = [...c.benefits]; while (benefits.length < 6) benefits.push({ title: "", body: "" }); return (
Änderungen sind nach dem Speichern sofort auf der öffentlichen Startseite sichtbar.