From efdfe729b4dd1f902c936dc8bd02d118b8b2e1ec Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Mar 2026 13:37:18 +0000 Subject: [PATCH 1/2] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 29bef52..2c5d52a 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -40,8 +40,8 @@ export default function ContactPage() { sideTitle="Support" faqsAnimation="slide-up" faqs={[ - { title: "Shipping info?", content: "Ships in 3-5 days." }, - { title: "Contact email?", content: "support@veloura.com" } + { id: "f1", title: "Shipping info?", content: "Ships in 3-5 days." }, + { id: "f2", title: "Contact email?", content: "support@veloura.com" } ]} /> @@ -69,4 +69,4 @@ export default function ContactPage() { ); -} +} \ No newline at end of file -- 2.49.1 From 4609edbf29e7a751a57f47d43817fe3dfc379c30 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Mar 2026 13:37:18 +0000 Subject: [PATCH 2/2] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index d747b67..e5946a7 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -42,9 +42,9 @@ export default function ShopPage() { title="Shop Collections" description="Explore our signature luxury sets." plans={[ - { title: "Basic Set", price: "$50", features: ["Standard lace", "Comfort fit"] }, - { title: "Premium Set", price: "$90", features: ["Silk detail", "Hand-crafted lace", "Enhanced support"] }, - { title: "Luxury Set", price: "$150", features: ["Premium silk", "Gold-plated details", "Custom gift box"] } + { id: "p1", title: "Basic Set", price: "$50", period: "one-time", button: { text: "Buy Now" }, features: ["Standard lace", "Comfort fit"] }, + { id: "p2", title: "Premium Set", price: "$90", period: "one-time", button: { text: "Buy Now" }, features: ["Silk detail", "Hand-crafted lace", "Enhanced support"] }, + { id: "p3", title: "Luxury Set", price: "$150", period: "one-time", button: { text: "Buy Now" }, features: ["Premium silk", "Gold-plated details", "Custom gift box"] } ]} /> @@ -72,4 +72,4 @@ export default function ShopPage() { ); -} +} \ No newline at end of file -- 2.49.1