feat: Add Tern of Use page - #178
Conversation
✅ Deploy Preview for wordwizard-texteditor ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
hi, @adityadomle. Can you use some styling most likely grid-card styling with animation? That will look better. |
There was a problem hiding this comment.
Pull Request Overview
This PR adds a Terms of Use page to the WordWizard application. The title contains a typo ("Tern" instead of "Terms"), but the implementation itself is correct.
Key Changes:
- New TermsOfUse component with standard legal sections
- Footer navigation updated to include Terms of Use link
- App routing configured for the new
/termspath
Reviewed Changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| src/components/TermsOfUse.jsx | New component displaying Terms of Use content with sections for usage, intellectual property, disclaimer, terms changes, and contact information |
| src/components/Footer.jsx | Added "Terms of Use" link to the Quick Links section |
| src/App.jsx | Added routing for /terms path and cleaned up commented code |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| isDark ? "hover:text-blue-400" : "hover:text-blue-600" | ||
| }`} | ||
| > | ||
| Terms of Use |
There was a problem hiding this comment.
The 'Terms of Use' link is hardcoded and not internationalized. Consider using the translation function t('footer.termsOfUse') to maintain consistency with other footer links and support multiple languages.
| Terms of Use | |
| {t("footer.termsOfUse")} |
Sure I'll change it 👍 |
|
Please check the code now! |
|
It's also showing the |
Done - i mentioned 175 & 176 issue number. |
📝 Description
Added a Terms of Use page
Fixes #175 & #176 (if applicable)
🔍 Type of Change
🧪 How Has This Been Tested?
Steps:
📸 Screenshots / Demo (if applicable)
🧠 Checklist
💬 Additional Notes
This update enhances the site structure and improves accessibility with the new Terms of Use section.