Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a Privacy Policy modal component and a footer link to open it, plus a documentation overhaul of README.md.
Changes:
- New
Privacycomponent andusePrivacyModalhook for displaying a privacy policy dialog - Footer updated to include a "Privacy Policy" button that opens the modal
- README rewritten with cleaner structure, configuration reference table, and deployment instructions
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
src/components/sections/Privacy.tsx |
New privacy policy modal component and state hook |
src/components/layout/footer.tsx |
Added privacy modal integration and link in footer |
README.md |
Restructured documentation with config table and streamlined sections |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
You can also share your feedback on Copilot code review. Take the survey.
Comment on lines
+116
to
+118
| This privacy policy describes how ("we", "us", | ||
| or "our") collects, uses, and shares your information when | ||
| you visit our website. |
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This pull request introduces a new privacy policy modal to the site and significantly improves documentation for setup, configuration, and deployment. The most important changes are grouped below.
Privacy Policy Modal Integration
Privacymodal component insrc/components/sections/Privacy.tsxthat displays the site's privacy policy using Material UI'sDialog. The modal explains what data is collected and how it's used, emphasizing minimal and anonymous analytics.usePrivacyModalhook insrc/components/sections/Privacy.tsxfor managing modal open/close state.Footercomponent insrc/components/layout/footer.tsxto include a "Privacy Policy" link that opens the modal, alongside the MIT License link. [1] [2]Documentation Improvements
README.mdto clarify features, configuration, environment variables, customizing sections, scripts, and deployment instructions. The new documentation is more structured, easier to follow, and includes example JSON for environment variables.