Redesign/landing page#1
Merged
Merged
Conversation
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
This PR redesigns the public landing experience and updates product copy across the dashboard to reflect “live field dispatch” terminology (jobs/workers) instead of “emergency alerts/responders”.
Changes:
- Rebuilds
LandingHomeinto a multi-section landing page with a dispatch hero simulation, videos, FAQ, and updated pilot signup form styling/behavior. - Updates UI text throughout the dispatcher dashboard and supporting pages/components from “incident/alert/responder” to “job/dispatch/worker”.
- Refreshes marketing copy/meta (carousel card text, HTML title) to match the new positioning.
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 6 comments.
Show a summary per file
| File | Description |
|---|---|
| dashboard/src/pages/LandingHome.jsx | Full landing page redesign (new sections, animations, pilot email capture, videos). |
| dashboard/src/pages/Dashboard.jsx | Terminology updates (job/worker) across dispatcher dashboard UI. |
| dashboard/src/pages/SystemMonitor.jsx | Updates UART signal map descriptions to job/worker language. |
| dashboard/src/pages/ResponderPage.jsx | Updates screenshot alt/caption and header copy to “Worker App”. |
| dashboard/src/components/CylinderCarousel.jsx | Updates carousel marketing copy to job/worker terminology. |
| dashboard/index.html | Updates document title to “Live Field Dispatch”. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+536
to
+540
| <section style={{ | ||
| background: NAVY, | ||
| padding: "0 24px 64px", | ||
| display: ready ? "block" : "none", | ||
| }}> |
Comment on lines
+1
to
4
| import { useState, useEffect, useRef } from "react"; | ||
| import { Link } from "react-router-dom"; | ||
| import { collection, addDoc } from "firebase/firestore"; | ||
| import { db } from "../services/firebase"; |
Comment on lines
136
to
140
| await addDoc(collection(db, "pilots"), { | ||
| email: val, | ||
| timestamp: new Date(), | ||
| source: "landing_page", | ||
| source: source, | ||
| }); |
Comment on lines
+117
to
+119
| function scrollToPilotForm() { | ||
| document.getElementById("pilot-form")?.scrollIntoView({ behavior: "smooth" }); | ||
| } |
Comment on lines
+558
to
+560
| <button | ||
| onClick={() => document.getElementById("full-demo")?.scrollIntoView({ behavior: "smooth" })} | ||
| style={{ |
Comment on lines
+453
to
+457
| function Hero({ reduced }) { | ||
| const [isMobile] = useState( | ||
| () => typeof window !== "undefined" && window.matchMedia("(max-width: 768px)").matches | ||
| ); | ||
| const frozen = reduced || isMobile; |
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.