Skip to main content

Privacy Policy & Terms of Service

Routes:

  • /privacy — Privacy Policy
  • /terms — Terms of Service

Files:

  • ayts-fe/app/privacy/page.tsx
  • ayts-fe/app/terms/page.tsx

Auth required: No

Purpose

Legal pages required for any consumer-facing application. Both pages are linked from the registration form ("By registering you agree to our Terms of Service and Privacy Policy").

Privacy Policy (/privacy)

Required Sections

  1. What data we collect — name, email, phone, location, order history
  2. How we use your data — order fulfillment, notifications, analytics
  3. Data sharing — shared with vendors (order details), riders (delivery info), PayMongo (payment processing)
  4. Data retention — how long we keep data
  5. Your rights — access, correction, deletion requests
  6. Contactprivacy@ayts.ph (or equivalent)
  7. Last updated date

Terms of Service (/terms)

Required Sections

  1. Acceptance of terms
  2. Platform description — marketplace, not a store owner
  3. User responsibilities — accurate info, no fraud
  4. Vendor responsibilities — accurate product listings, fulfillment
  5. Payment terms — 3% commission on all orders
  6. Prohibited activities
  7. Limitation of liability
  8. Governing law — Republic of the Philippines
  9. Contact
  10. Last updated date

Known Issues / Status

ItemStatus
Privacy page exists✅ Exists with real content
Terms page exists✅ Exists with real content
Linked from registration✅ Register page references them
Footer links❌ No footer component yet

Integration Points

Both pages are linked from:

  • Registration form
  • Footer (once footer is built)
  • Vendor onboarding form
  • About page

A footer component should be added to ayts-fe/components/footer.tsx and rendered in app/layout.tsx:

<footer>
<nav>
<Link href="/privacy">Privacy Policy</Link>
<Link href="/terms">Terms of Service</Link>
<Link href="/about">Contact Us</Link>
</nav>
<p>© 2026 AYTS — At Your Tayo Service. Powered by your local community.</p>
</footer>