Update src/app/page.tsx

This commit is contained in:
2026-06-01 12:27:31 +00:00
parent 0a8f4fe3ef
commit 309a2647db

View File

@@ -93,13 +93,13 @@ export default function LandingPage() {
<div id="legal" data-section="legal">
<LegalSection
layout="tabs"
layout="section"
title="Legal Information"
sections={[
{ id: "terms", title: "Terms of Service", content: "Welcome to World Cup Store! By using our services, you agree to our terms. Please read them carefully." },
{ id: "privacy", title: "Privacy Policy", content: "Your privacy is important to us. This policy explains how we collect, use, and protect your personal data." },
{ id: "shipping", title: "Shipping Policy", content: "Details on shipping methods, costs, and delivery times for your World Cup merchandise." },
{ id: "returns", title: "Return Policy", content: "Information on how to return or exchange products purchased from our store." }
{ id: "terms", title: "Terms of Service", content: [{ type: "text", content: "Welcome to World Cup Store! By using our services, you agree to our terms. Please read them carefully." }] },
{ id: "privacy", title: "Privacy Policy", content: [{ type: "text", content: "Your privacy is important to us. This policy explains how we collect, use, and protect your personal data." }] },
{ id: "shipping", title: "Shipping Policy", content: [{ type: "text", content: "Details on shipping methods, costs, and delivery times for your World Cup merchandise." }] },
{ id: "returns", title: "Return Policy", content: [{ type: "text", content: "Information on how to return or exchange products purchased from our store." }] }
]}
/>
</div>