import { t } from "@lingui/macro"; import { Label, Select, SelectContent, SelectItem, SelectTrigger, SelectValue, Slider, Switch, } from "@reactive-resume/ui"; import { useResumeStore } from "@/client/stores/resume"; import { getSectionIcon } from "../shared/section-icon"; export const PageSection = () => { const setValue = useResumeStore((state) => state.setValue); const page = useResumeStore((state) => state.resume.data.metadata.page); return (
{getSectionIcon("page")}

{t`Page`}

{ setValue("metadata.page.margin", value[0]); }} /> {page.margin}
{ setValue("metadata.page.options.breakLine", checked); }} />
{ setValue("metadata.page.options.pageNumbers", checked); }} />
); };