-
Notifications
You must be signed in to change notification settings - Fork 133
feat: add Privacy Policy page and update footer link (#192) #237
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
rdodiya
merged 3 commits into
rdodiya:gssoc_develop
from
bm0213:feat/privacy-policy-page
Jun 8, 2026
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,133 @@ | ||
| import { Link } from 'react-router-dom'; | ||
|
|
||
| const PrivacyPolicy = () => { | ||
| return ( | ||
| <div className="min-h-screen bg-white dark:bg-gray-900 py-16 px-4"> | ||
| <div className="max-w-4xl mx-auto"> | ||
|
|
||
| {/* Header */} | ||
| <div className="mb-10"> | ||
| <Link | ||
| to="/" | ||
| className="text-blue-600 hover:underline text-sm mb-4 inline-block" | ||
| > | ||
| ← Back to Home | ||
| </Link> | ||
| <h1 className="text-4xl font-bold text-gray-900 dark:text-white mb-2"> | ||
| Privacy Policy | ||
| </h1> | ||
| <p className="text-gray-500 dark:text-gray-400 text-sm"> | ||
| Last updated: June 2026 | ||
| </p> | ||
| </div> | ||
|
|
||
| {/* Content */} | ||
| <div className="space-y-8 text-gray-700 dark:text-gray-300 leading-relaxed"> | ||
|
|
||
| {/* Section 1 */} | ||
| <section> | ||
| <h2 className="text-2xl font-semibold text-gray-900 dark:text-white mb-3"> | ||
| 1. Information We Collect | ||
| </h2> | ||
| <p> | ||
| We collect information you provide directly to us, such as when | ||
| you create an account, use our services, or contact us for support. | ||
| This includes your name, email address, phone number, and | ||
| restaurant details. | ||
| </p> | ||
| </section> | ||
|
|
||
| {/* Section 2 */} | ||
| <section> | ||
| <h2 className="text-2xl font-semibold text-gray-900 dark:text-white mb-3"> | ||
| 2. How We Use Your Information | ||
| </h2> | ||
| <p>We use the information we collect to:</p> | ||
| <ul className="list-disc list-inside mt-2 space-y-1"> | ||
| <li>Provide, maintain, and improve our services</li> | ||
| <li>Process transactions and send related information</li> | ||
| <li>Send technical notices and support messages</li> | ||
| <li>Respond to your comments and questions</li> | ||
| <li>Monitor and analyze usage patterns and trends</li> | ||
| </ul> | ||
| </section> | ||
|
|
||
| {/* Section 3 */} | ||
| <section> | ||
| <h2 className="text-2xl font-semibold text-gray-900 dark:text-white mb-3"> | ||
| 3. Data Storage & Security | ||
| </h2> | ||
| <p> | ||
| We take reasonable measures to help protect your personal | ||
| information from loss, theft, misuse, unauthorized access, | ||
| disclosure, alteration, and destruction. Your data is stored | ||
| securely on our servers located in India. | ||
| </p> | ||
| </section> | ||
|
|
||
| {/* Section 4 */} | ||
| <section> | ||
| <h2 className="text-2xl font-semibold text-gray-900 dark:text-white mb-3"> | ||
| 4. Cookies | ||
| </h2> | ||
| <p> | ||
| We use cookies and similar tracking technologies to track activity | ||
| on our platform and hold certain information. You can instruct your | ||
| browser to refuse all cookies or to indicate when a cookie is being | ||
| sent. | ||
| </p> | ||
| </section> | ||
|
|
||
| {/* Section 5 */} | ||
| <section> | ||
| <h2 className="text-2xl font-semibold text-gray-900 dark:text-white mb-3"> | ||
| 5. Sharing of Information | ||
| </h2> | ||
| <p> | ||
| We do not sell, trade, or rent your personal identification | ||
| information to others. We may share generic aggregated demographic | ||
| information not linked to any personal identification information | ||
| with our business partners and trusted affiliates. | ||
| </p> | ||
| </section> | ||
|
|
||
| {/* Section 6 */} | ||
| <section> | ||
| <h2 className="text-2xl font-semibold text-gray-900 dark:text-white mb-3"> | ||
| 6. Your Rights | ||
| </h2> | ||
| <p>You have the right to:</p> | ||
| <ul className="list-disc list-inside mt-2 space-y-1"> | ||
| <li>Access the personal data we hold about you</li> | ||
| <li>Request correction of inaccurate data</li> | ||
| <li>Request deletion of your personal data</li> | ||
| <li>Withdraw consent at any time</li> | ||
| <li>Lodge a complaint with a supervisory authority</li> | ||
| </ul> | ||
| </section> | ||
|
|
||
| {/* Section 7 */} | ||
| <section> | ||
| <h2 className="text-2xl font-semibold text-gray-900 dark:text-white mb-3"> | ||
| 7. Contact Us | ||
| </h2> | ||
| <p> | ||
| If you have any questions about this Privacy Policy, please | ||
| contact us at: | ||
| </p> | ||
| <div className="mt-3 p-4 bg-blue-50 dark:bg-gray-800 rounded-lg"> | ||
| <p className="font-medium text-blue-700 dark:text-blue-400"> | ||
| Restroly Support | ||
| </p> | ||
| <p>Email: support@restroly.com</p> | ||
| <p>Address: India</p> | ||
| </div> | ||
| </section> | ||
|
|
||
| </div> | ||
| </div> | ||
| </div> | ||
| ); | ||
| }; | ||
|
|
||
| export default PrivacyPolicy; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.