From 6ea02fdb221cb09c72c2a73dbbf567ddc3b2cfca Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 17:17:01 +0000 Subject: [PATCH 1/2] Update src/app/about/page.tsx --- src/app/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 95e4c83..b2787a6 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -42,7 +42,7 @@ export default function AboutPage() { layout="section" title="Our Craft" sections={[ - { heading: "Our Story", content: "Started in the heart of Jodhpur, Sartorial was born from a desire to bring bespoke quality to the modern Indian man." }, + { heading: "Our Story", content: [{ type: "paragraph", text: "Started in the heart of Jodhpur, Sartorial was born from a desire to bring bespoke quality to the modern Indian man." }] }, ]} /> -- 2.49.1 From ff559f126b00ec39a997b683f203ee27375ec8d8 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 17:17:02 +0000 Subject: [PATCH 2/2] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 2a47f0f..6178006 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -52,7 +52,7 @@ export default function ContactPage() { layout="section" title="Business Information" sections={[ - { heading: "Hours of Operation", content: ["Mon-Sat: 10:00 AM - 8:00 PM", "Sunday: By appointment only"] }, + { heading: "Hours of Operation", content: { type: "list", items: ["Mon-Sat: 10:00 AM - 8:00 PM", "Sunday: By appointment only"] } }, ]} /> -- 2.49.1