Add terms of service and privacy policy pages to your application.
The Starter Kit includes pre-built templates for legal pages required for most SaaS applications: Terms of Service and Privacy Policy. These pages provide a foundation that you should customize with your company’s specific terms and policies.
Located at /terms, this page outlines the terms and conditions for using your application.Access:/terms Template:app/terms/page.tsx(((REPLACE_THIS_WITH_IMAGE: terms-of-service-page.png: Screenshot of Terms of Service page)))Template Content:
Service description and scope
User responsibilities and acceptable use
Intellectual property rights
Limitation of liability
Termination conditions
Governing law
The provided terms template is for reference only and may not be suitable for your specific business. Consult with legal counsel to create terms appropriate for your service.
Located at /privacy, this page explains how you collect, use, and protect user data.Access:/privacy Template:app/privacy/page.tsx(((REPLACE_THIS_WITH_IMAGE: privacy-policy-page.png: Screenshot of Privacy Policy page)))Template Content:
Information collection practices
Data usage and processing
Cookie policy
Third-party services
Data security measures
User rights (GDPR, CCPA compliance considerations)
Contact information for privacy inquiries
Privacy laws vary by jurisdiction. The template is a starting point but must be reviewed and customized by legal counsel to ensure compliance with applicable laws (GDPR, CCPA, etc.).
// Example: Add AI Usage Terms<section className="mb-8"> <h2 className="text-2xl font-semibold mb-4">AI Generation Terms</h2> <p> By using our AI image generation features, you agree that: </p> <ul className="list-disc pl-6 space-y-2 mt-4"> <li>Generated content is subject to our acceptable use policy</li> <li>You are responsible for the content you generate</li> <li>We reserve the right to refuse generation requests</li> </ul></section>
// Display banner for users who accepted old version<div className="bg-amber-50 dark:bg-amber-900/20 border border-amber-200 dark:border-amber-800 p-4 mb-8 rounded-lg"> <p className="font-semibold mb-2">Terms Updated</p> <p className="text-sm"> Our Terms of Service were updated on November 26, 2025. Please review the changes and accept the new terms to continue using the service. </p> <Button size="sm" className="mt-4">Review Changes</Button></div>