diff --git a/src/app/checkout/page.tsx b/src/app/checkout/page.tsx index d0f45fe..e388b16 100644 --- a/src/app/checkout/page.tsx +++ b/src/app/checkout/page.tsx @@ -40,7 +40,7 @@ export default function CheckoutPage() { title="Checkout Terms" sections={[ { - heading: "Payment Policy", text: "All payments are processed securely." + heading: "Payment Policy", content: [{ type: "paragraph", text: "All payments are processed securely." }] } ]} /> diff --git a/src/app/delivery/page.tsx b/src/app/delivery/page.tsx index de7a0e0..8edeb52 100644 --- a/src/app/delivery/page.tsx +++ b/src/app/delivery/page.tsx @@ -40,7 +40,7 @@ export default function DeliveryPage() { title="Delivery Policy" sections={[ { - heading: "Shipping Times", items: ["Standard: 3-5 days", "Express: 1-2 days"] + heading: "Shipping Times", content: [{ type: "list", items: ["Standard: 3-5 days", "Express: 1-2 days"] }] } ]} />