feat(web): add Valentine's Day themed homepage update#11052
feat(web): add Valentine's Day themed homepage update#11052roomote[bot] wants to merge 1 commit intomainfrom
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.
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.