"use client"; import { SectionEditor } from "../_components/SectionEditor"; import { InputField } from "../_components/FormField"; import { ArrayEditor } from "../_components/ArrayEditor"; interface AboutData { title: string; paragraphs: string[]; } export default function AboutEditorPage() { return ( sectionKey="about" title="О студии" defaultData={{ paragraphs: [] }}> {(data, update) => ( <> update({ ...data, title: v })} /> update({ ...data, paragraphs })} inline renderItem={(text, _i, updateItem) => (