mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-15 01:01:43 +10:00
feat: separate links option at section level to reduce section item height
This commit is contained in:
@ -20,6 +20,7 @@ import { volunteerSchema } from "./volunteer";
|
||||
export const sectionSchema = z.object({
|
||||
name: z.string(),
|
||||
columns: z.number().min(1).max(5).default(1),
|
||||
separateLinks: z.boolean().default(true),
|
||||
visible: z.boolean().default(true),
|
||||
});
|
||||
|
||||
@ -98,6 +99,7 @@ export type CustomSectionGroup = z.infer<typeof customSchema>;
|
||||
export const defaultSection: Section = {
|
||||
name: "",
|
||||
columns: 1,
|
||||
separateLinks: true,
|
||||
visible: true,
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user