Skip to content

Latest commit

 

History

History
46 lines (31 loc) · 1.31 KB

File metadata and controls

46 lines (31 loc) · 1.31 KB

🔒 Adding Privacy Policy to Your Existing Vercel App

Perfect Solution!

Since you already have your web app hosted at: https://moving-planner-ke.vercel.app/

You can add the privacy policy at: https://moving-planner-ke.vercel.app/privacy-policy

This is actually better because:

  • ✅ Same domain as your app (professional)
  • ✅ No additional hosting needed
  • ✅ Easy to maintain
  • ✅ Users can navigate between app and policy

🚀 How to Add Privacy Policy to Your Vercel App

Method 1: Add as Static Page

  1. Add Privacy Policy Route

    • Create: src/pages/Privacy.tsx (already exists, update it)
    • Route: /privacy will automatically work
  2. Update Your Privacy Page

    • Replace content with your privacy policy
    • Use your app's styling for consistency
  3. Deploy to Vercel

    • Commit and push to your repository
    • Vercel will auto-deploy
    • Access at: https://moving-planner-ke.vercel.app/privacy

Method 2: Add Static HTML File (Alternative)

  1. Add to Public Folder
    • Copy privacy-policy.html to public/privacy-policy.html
    • Access at: https://moving-planner-ke.vercel.app/privacy-policy.html

📝 Update Your Existing Privacy Page

Let me check your current Privacy page and update it with the complete policy...