-
Notifications
You must be signed in to change notification settings - Fork 1
Update creator messages and prevent empty form submissions #117
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
Conversation
- Update creator's message about handwritten font addition - Add Google Forms link for font recommendations in both languages - Prevent form submission when URL field is empty or whitespace-only
✅ Deploy Preview for sync-timer ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
WalkthroughA new "Creator's voice" section was added to the footer, featuring a paragraph about a handwritten-style font and a link for font recommendations. Additionally, both Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~7 minutes Poem
Note 🔌 MCP (Model Context Protocol) integration is now available in Early Access!Pro users can now connect to remote MCP servers under the Integrations page to get reviews and chat conversations that understand additional development context. 📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (2)
🚧 Files skipped from review as they are similar to previous changes (2)
✨ Finishing Touches🧪 Generate unit tests
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 2
🧹 Nitpick comments (2)
en.html (1)
174-177: Open external link in a new tab and add rel attributes for safety/consistencyOther external links in this footer use target="_blank" with rel="noopener noreferrer". Apply the same here.
- Added a handwritten-style font. <a href="https://docs.google.com/forms/d/e/1FAIpQLScMezFWGTb_kdzS8jPiP-bu3KpwwGGOv7HkSbRdQdEiIodUtA/viewform?usp=header">If you have any recommended fonts, please let me know.</a> + Added a handwritten-style font. + <a + href="https://docs.google.com/forms/d/e/1FAIpQLScMezFWGTb_kdzS8jPiP-bu3KpwwGGOv7HkSbRdQdEiIodUtA/viewform?usp=header" + target="_blank" + rel="noopener noreferrer" + >If you have any recommended fonts, please let me know.</a>index.html (1)
168-169: Open external link in a new tab and add rel attributes for safety/consistencyMatch the pattern used elsewhere (target="_blank" + rel="noopener noreferrer").
- 手書き文字風のフォントを追加しました。<a href="https://docs.google.com/forms/d/e/1FAIpQLScMezFWGTb_kdzS8jPiP-bu3KpwwGGOv7HkSbRdQdEiIodUtA/viewform?usp=header">おすすめのフォントがあれば教えてください。</a> + 手書き文字風のフォントを追加しました。 + <a + href="https://docs.google.com/forms/d/e/1FAIpQLScMezFWGTb_kdzS8jPiP-bu3KpwwGGOv7HkSbRdQdEiIodUtA/viewform?usp=header" + target="_blank" + rel="noopener noreferrer" + >おすすめのフォントがあれば教えてください。</a>
- Add HTML5 validation attributes (type="url", required, inputmode="url") - Enhance JavaScript validation with custom validity messages - Show proper validation feedback to users for empty inputs - Trim whitespace from URL values before processing
Summary by CodeRabbit
New Features
Bug Fixes