Membership recruitment landing page for the Robotics Club TU Berlin. Students fill out the application form to join the club.
Live site: https://rctub-join.vercel.app
- Hero — full-viewport section with the club headline
- About — one-sentence description of the community
- Apply — floating card with the application form link and contact email
- Footer — logo, tagline, copyright, and contact
The Google Form URL is a single constant at the top of src/components/site/Apply.tsx:
const FORM_URL = "https://forms.gle/DBw9egb8NzTrt5zn8";Replace the value and push — Vercel deploys automatically on every push to main.
- TanStack Start — SSR framework with file-based routing
- React 19 + TypeScript
- Tailwind CSS v4
- Vite 8 + Nitro (Vercel preset)
- Bun — package manager and runtime
bun install
bun run devPushes to main deploy to production automatically via Vercel's GitHub integration.
To deploy manually:
bun run build
vercel --prod --yes