Merge version_1 into main #3

Merged
bender merged 2 commits from version_1 into main 2026-03-27 13:37:25 +00:00
2 changed files with 7 additions and 7 deletions

View File

@@ -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" }
]}
/>
</div>
@@ -69,4 +69,4 @@ export default function ContactPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -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"] }
]}
/>
</div>
@@ -72,4 +72,4 @@ export default function ShopPage() {
</ReactLenis>
</ThemeProvider>
);
}
}