cd rise-landing
npm installnpm run devOpen http://localhost:5173 in your browser
npm run buildYour production-ready site will be in the dist folder.
# Initialize git (if not already done)
git init
# Add all files
git add .
# Commit
git commit -m "Initial commit: Rise landing page"
# Create repo on GitHub, then:
git remote add origin https://github.com/YOUR-USERNAME/YOUR-REPO-NAME.git
git branch -M main
git push -u origin main- Go to https://vercel.com
- Sign in with GitHub
- Click "New Project"
- Import your repository
- Click "Deploy" (Vercel auto-detects Vite!)
That's it! Your site will be live in ~1 minute.
Before deploying, open src/App.jsx and replace:
- GitHub Links:
yourusername/riseβ Your actual repo - Discord Invite:
yourinviteβ Your Discord invite code - Twitter Handle:
yourhandleβ Your Twitter username - Sponsor Link: Update GitHub sponsors URL
Search for these strings in the file and replace them all.
rise-landing/
βββ src/
β βββ App.jsx β Your landing page (edit this!)
β βββ main.jsx β React entry point
β βββ index.css β Global styles
βββ index.html β HTML template
βββ package.json β Dependencies
βββ README.md β Full documentation
- Full README: See README.md for complete documentation
- Vite Docs: https://vitejs.dev
- Tailwind Docs: https://tailwindcss.com
- React Docs: https://react.dev
Pro Tip: The landing page is a single React component in src/App.jsx. All your edits go there!