-
Notifications
You must be signed in to change notification settings - Fork 2.8k
feat(web): add Valentine's Day themed homepage update #11052
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
base: main
Are you sure you want to change the base?
Conversation
Re-reviewed the Valentine's Day themed homepage update. No issues remain.
Mention @roomote in a comment to request specific changes to this pull request or fix all unresolved issues. |
|
🚀 Preview deployed! Your changes have been deployed to Vercel: Preview URL: https://roo-code-website-5dcfba3s4-roo-code.vercel.app This preview will be updated automatically when you push new commits to this PR. |
| style={{ | ||
| left: `${heart.left}%`, | ||
| animationDelay: `${heart.delay}s`, | ||
| animationDuration: `${heart.duration}s`, | ||
| }}> |
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.
The hearts are absolutely positioned with only left specified. Without bottom: 0, they start near the top of the container (CSS default for absolute positioning). Combined with translateY(100%) only offsetting by the heart's own small height (12-28px), the hearts won't float up from the bottom as intended. They'll start near the top and immediately animate out of the overflow-hidden banner, making them barely visible.
| style={{ | |
| left: `${heart.left}%`, | |
| animationDelay: `${heart.delay}s`, | |
| animationDuration: `${heart.duration}s`, | |
| }}> | |
| style={{ | |
| left: `${heart.left}%`, | |
| bottom: 0, | |
| animationDelay: `${heart.delay}s`, | |
| animationDuration: `${heart.duration}s`, | |
| }}> |
Fix it with Roo Code or mention @roomote and request a fix.
f6ddd48 to
44ff569
Compare
This PR adds a Valentine's Day themed update to the marketing homepage with:
View task on Roo Code Cloud
Important
Adds Valentine's Day themed update to the homepage with new colors, animations, and messaging.
globals.css.@keyframesinglobals.css.page.tsx.FloatingHeartscomponent infloating-hearts.tsxfor heart animations.CTASectionincta-section.tsxwith themed messaging and animations.FloatingHeartsinpage.tsxandindex.tsfor homepage integration.This description was created by
for 44ff569. You can customize this summary. It will automatically update as commits are pushed.