import { Box, Dialog, DialogActionButton, DialogActions, DialogContent, DialogHeader, ScrollArea, Text, Video, } from "@prismicio/editor-ui"; interface StaticFieldsInfoDialogProps { open: boolean; onOpenChange: (open: boolean) => void; onConfirm: () => void; } export function StaticFieldsInfoDialog(props: StaticFieldsInfoDialogProps) { const { open, onOpenChange, onConfirm } = props; const handleConfirm = () => { onConfirm(); onOpenChange(false); }; return ( About What is the static zone? The static zone in Prismic page types contain fields that are always present on the page. Use it for essential information like a page's title, page design settings, or metadata. Unlike slices, which can be added or removed, static zone fields remain fixed. Got it ); }