From ec398bbbee1cbc4692ab49f6c2f2ad88c899ad18 Mon Sep 17 00:00:00 2001 From: shiva raj badu Date: Fri, 25 Jul 2025 12:13:14 +0545 Subject: [PATCH] chore: modern layout design adjustement --- .../modern/2AboutCompanySlideLayout.tsx | 6 +++--- .../modern/4SolutionSlideLayout.tsx | 10 +++++----- .../presentation-layouts/modern/z10TeamSlideLayout.tsx | 2 +- .../modern/z11ThankYouSlideLayout.tsx | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/servers/nextjs/presentation-layouts/modern/2AboutCompanySlideLayout.tsx b/servers/nextjs/presentation-layouts/modern/2AboutCompanySlideLayout.tsx index 02f8f13d..372d5424 100644 --- a/servers/nextjs/presentation-layouts/modern/2AboutCompanySlideLayout.tsx +++ b/servers/nextjs/presentation-layouts/modern/2AboutCompanySlideLayout.tsx @@ -13,8 +13,8 @@ const aboutCompanySlideSchema = z.object({ }), content: z .string() - .min(50) - .max(500) + .min(25) + .max(400) .default( "In the presentation session, the background/introduction can be filled with information that is arranged systematically and effectively with respect to an interesting topic to be used as material for discussion at the opening of the presentation session. The introduction can provide a general overview for those who are listening to your presentation so that the key words on the topic of discussion are emphasized during this background/introductory presentation session.", ) @@ -53,7 +53,7 @@ const AboutCompanySlideLayout: React.FC = ({ />
= ({ />
= ({

{/* Four Small Boxes in a Row */} -
+
{sections.map((section, idx) => (
{section?.icon?.__icon_url__ && ( diff --git a/servers/nextjs/presentation-layouts/modern/z10TeamSlideLayout.tsx b/servers/nextjs/presentation-layouts/modern/z10TeamSlideLayout.tsx index c32d08c3..9f7ff177 100644 --- a/servers/nextjs/presentation-layouts/modern/z10TeamSlideLayout.tsx +++ b/servers/nextjs/presentation-layouts/modern/z10TeamSlideLayout.tsx @@ -24,7 +24,7 @@ const teamMemberSchema = z.object({ }); const modernTeamSlideSchema = z.object({ - title: z.string().min(3).max(20).default("Our Team").meta({ + title: z.string().min(3).max(15).default("Our Team").meta({ description: "Main title of the slide", }), subtitle: z.string().min(10).max(120).optional().meta({ diff --git a/servers/nextjs/presentation-layouts/modern/z11ThankYouSlideLayout.tsx b/servers/nextjs/presentation-layouts/modern/z11ThankYouSlideLayout.tsx index ac58a556..5532dfab 100644 --- a/servers/nextjs/presentation-layouts/modern/z11ThankYouSlideLayout.tsx +++ b/servers/nextjs/presentation-layouts/modern/z11ThankYouSlideLayout.tsx @@ -7,7 +7,7 @@ export const layoutDescription = "A simple, plain thank you slide for closing presentations."; const thankYouSlideSchema = z.object({ - title: z.string().min(3).max(40).default("Thank You!").meta({ + title: z.string().min(3).max(30).default("Thank You!").meta({ description: "Main thank you message", }), subtitle: z.string().min(0).max(100).default("").meta({