Update src/app/legal/page.tsx

This commit is contained in:
2026-05-27 17:52:45 +00:00
parent a0c93223be
commit d99c29fb96

View File

@@ -26,37 +26,21 @@ export default function LandingPage() {
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Products",
id: "/products",
},
name: "Products", id: "/products"},
{
name: "Details",
id: "/product-detail",
},
name: "Details", id: "/product-detail"},
{
name: "About Us",
id: "/about",
},
name: "About Us", id: "/about"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
{
name: "FAQ",
id: "/faq",
},
name: "FAQ", id: "/faq"},
{
name: "Track Order",
id: "/track-order",
},
name: "Track Order", id: "/track-order"},
{
name: "Policies",
id: "/legal",
},
name: "Policies", id: "/legal"},
]}
logoSrc="http://img.b2bpic.net/free-photo/computer-mouse-paper-bag-blue-background-top-view_169016-43524.jpg"
logoAlt="NovaCart Logo"
@@ -68,7 +52,6 @@ export default function LandingPage() {
<TextAbout
useInvertedBackground={false}
title="NovaCart Privacy Policy"
text="At NovaCart, we are deeply committed to protecting your privacy and personal data. This Privacy Policy outlines how we collect, use, store, and safeguard your information when you visit our website, make a purchase, or interact with our services. We adhere to strict data protection principles and comply with relevant regulations to ensure your trust is maintained. Your personal information, including names, addresses, email, and payment details, is collected only for order fulfillment, customer support, and enhancing your shopping experience. We never sell or rent your data to third parties. We use secure encryption for all transactions and employ robust security measures to protect against unauthorized access. By using NovaCart, you consent to the practices described in this policy. We encourage you to read it carefully and contact us if you have any questions."
/>
</div>
@@ -77,25 +60,13 @@ export default function LandingPage() {
useInvertedBackground={true}
faqs={[
{
id: "terms-1",
title: "Acceptance of Terms",
content: "By accessing or using the NovaCart website, you agree to be bound by these Terms and Conditions and all applicable laws and regulations. If you do not agree, you may not use our services.",
},
id: "terms-1", title: "Acceptance of Terms", content: "By accessing or using the NovaCart website, you agree to be bound by these Terms and Conditions and all applicable laws and regulations. If you do not agree, you may not use our services."},
{
id: "terms-2",
title: "Purchases and Payments",
content: "All purchases made through NovaCart are subject to product availability and our acceptance. Prices are subject to change without notice. By completing a transaction, you authorize us to charge your selected payment method.",
},
id: "terms-2", title: "Purchases and Payments", content: "All purchases made through NovaCart are subject to product availability and our acceptance. Prices are subject to change without notice. By completing a transaction, you authorize us to charge your selected payment method."},
{
id: "terms-3",
title: "Shipping and Delivery",
content: "NovaCart offers worldwide shipping. Delivery times are estimates and may vary. We are not responsible for delays caused by customs, carriers, or events beyond our control.",
},
id: "terms-3", title: "Shipping and Delivery", content: "NovaCart offers worldwide shipping. Delivery times are estimates and may vary. We are not responsible for delays caused by customs, carriers, or events beyond our control."},
{
id: "terms-4",
title: "Returns and Refunds",
content: "Our return policy allows for returns within 30 days of purchase, provided items are in their original condition. Refunds are processed to the original payment method after inspection. Specific terms apply to different product categories.",
},
id: "terms-4", title: "Returns and Refunds", content: "Our return policy allows for returns within 30 days of purchase, provided items are in their original condition. Refunds are processed to the original payment method after inspection. Specific terms apply to different product categories."},
]}
sideTitle="NovaCart Terms & Conditions"
sideDescription="Understand the legal agreements governing your use of NovaCart services, including purchases, returns, intellectual property, and acceptable use."
@@ -108,79 +79,47 @@ export default function LandingPage() {
<FooterBase
columns={[
{
title: "Shop",
items: [
title: "Shop", items: [
{
label: "All Products",
href: "/products",
},
label: "All Products", href: "/products"},
{
label: "Featured",
href: "/products",
},
label: "Featured", href: "/products"},
{
label: "Best Sellers",
href: "/products",
},
label: "Best Sellers", href: "/products"},
{
label: "Deals",
href: "/products",
},
label: "Deals", href: "/products"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
{
label: "FAQ",
href: "/faq",
},
label: "FAQ", href: "/faq"},
{
label: "Our Team",
href: "/about#our-team",
},
label: "Our Team", href: "/about#our-team"},
],
},
{
title: "Support",
items: [
title: "Support", items: [
{
label: "Track Order",
href: "/track-order",
},
label: "Track Order", href: "/track-order"},
{
label: "Shipping Info",
href: "/faq",
},
label: "Shipping Info", href: "/faq"},
{
label: "Returns Policy",
href: "/legal",
},
label: "Returns Policy", href: "/legal"},
{
label: "Help Center",
href: "/contact",
},
label: "Help Center", href: "/contact"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "/legal#privacy-policy",
},
label: "Privacy Policy", href: "/legal#privacy-policy"},
{
label: "Terms & Conditions",
href: "/legal#terms-conditions",
},
label: "Terms & Conditions", href: "/legal#terms-conditions"},
],
},
]}