feat: redesign web menu layout, add header cover banner & dynamic header layout, refine mobile inputs and theme selector

This commit is contained in:
AyrisAI
2026-08-20 15:07:13 +03:00
parent 6fb91c94ff
commit 0836fc8539
17 changed files with 311 additions and 553 deletions
+1
View File
@@ -7,6 +7,7 @@ export const themeConfigSchema = z.object({
background: z.string(),
productLayout: z.enum(["card", "list"]),
categoryLayout: z.enum(["accordion", "tabs", "flat"]),
headerLayout: z.enum(["centered", "left"]).optional().default("centered"),
});
export type ThemeConfig = z.infer<typeof themeConfigSchema>;