Privacy Policy & Terms of Service
Routes:
/privacy— Privacy Policy/terms— Terms of Service
Files:
ayts-fe/app/privacy/page.tsxayts-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
- What data we collect — name, email, phone, location, order history
- How we use your data — order fulfillment, notifications, analytics
- Data sharing — shared with vendors (order details), riders (delivery info), PayMongo (payment processing)
- Data retention — how long we keep data
- Your rights — access, correction, deletion requests
- Contact — privacy@ayts.ph (or equivalent)
- Last updated date
Terms of Service (/terms)
Required Sections
- Acceptance of terms
- Platform description — marketplace, not a store owner
- User responsibilities — accurate info, no fraud
- Vendor responsibilities — accurate product listings, fulfillment
- Payment terms — 3% commission on all orders
- Prohibited activities
- Limitation of liability
- Governing law — Republic of the Philippines
- Contact
- Last updated date
Known Issues / Status
| Item | Status |
|---|---|
| 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
Required: Footer Component
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>