Before you deploy your Rise landing page, make sure you've completed these tasks:
- Replace
yourusername/risewith your actual GitHub repo URL (appears in multiple places) - Replace
yourinvitewith your actual Discord invite code - Replace
yourhandlewith your Twitter username - Update GitHub sponsors link
- Verify all links open in new tabs (
target="_blank")
Where to update: Search src/App.jsx for these strings
- Replace placeholder screenshot in hero section
- Add 6 actual screenshots for the slideshow section
- Optimize images (use WebP format, compress)
- Add images to
public/folder - Update image paths in
src/App.jsx
- Review all copy for accuracy
- Check that feature lists match your current MVP status
- Verify roadmap timeline is correct
- Proofread for typos
- Update Open Graph image (create a 1200x630 preview image)
- Add your Open Graph image to
public/og-image.png - Update meta description in
index.html - Verify page title is correct
- Test on mobile devices (responsive design)
- Test all navigation links
- Test all external links (GitHub, Discord, etc.)
- Test smooth scroll to sections
- Check browser console for errors
- Test in multiple browsers (Chrome, Firefox, Safari)
- Push code to GitHub
- Connect to Vercel
- Verify deployment is successful
- Test production site
- Configure custom domain (optional)
- Set up analytics (Google Analytics, Plausible, etc.)
- Monitor performance with Lighthouse
- Share on social media
- Add link to GitHub repo README
Use these commands to update links quickly:
# Find all occurrences
grep -r "yourusername/rise" src/
# Replace (macOS)
sed -i '' 's/yourusername\/rise/YOUR-USERNAME\/YOUR-REPO/g' src/App.jsx
# Replace (Linux)
sed -i 's/yourusername\/rise/YOUR-USERNAME\/YOUR-REPO/g' src/App.jsxsed -i '' 's/yourinvite/YOUR-INVITE-CODE/g' src/App.jsx # macOS
sed -i 's/yourinvite/YOUR-INVITE-CODE/g' src/App.jsx # Linuxsed -i '' 's/yourhandle/YOUR-HANDLE/g' src/App.jsx # macOS
sed -i 's/yourhandle/YOUR-HANDLE/g' src/App.jsx # LinuxReady to deploy? Run through this checklist one more time, then follow the QUICKSTART.md guide!