diff --git a/packages/web/src/components/WelcomeModal/WelcomeGuideBody.tsx b/packages/web/src/components/WelcomeModal/WelcomeGuideBody.tsx index 73e52cbf0..a8b4ca930 100644 --- a/packages/web/src/components/WelcomeModal/WelcomeGuideBody.tsx +++ b/packages/web/src/components/WelcomeModal/WelcomeGuideBody.tsx @@ -25,11 +25,12 @@ export function WelcomeGuideBody() { <>

- Compass Calendar helps you manage your time, simply. + The best place to manage your schedule at the keyboard.

- A small, but mighty calendar app. Built for busy minimalists who get - things done. + Move fast, stay focused, and never reach for the mouse. Even + scheduling itself is quicker from the keyboard than any other + calendar.

diff --git a/packages/web/src/components/WelcomeModal/WelcomeModal.test.tsx b/packages/web/src/components/WelcomeModal/WelcomeModal.test.tsx index 75f97887a..e3a58afbe 100644 --- a/packages/web/src/components/WelcomeModal/WelcomeModal.test.tsx +++ b/packages/web/src/components/WelcomeModal/WelcomeModal.test.tsx @@ -66,13 +66,11 @@ describe("WelcomeModal", () => { expect( screen.getByRole("heading", { - name: "Compass Calendar helps you manage your time, simply.", + name: "The best place to manage your schedule at the keyboard.", }), ).toBeTruthy(); expect( - screen.getByText( - /A small, but mighty calendar app\. Built for busy minimalists/, - ), + screen.getByText(/Move fast, stay focused, and never reach for/), ).toBeTruthy(); expect(screen.getByRole("img", { name: /pixel pirate/i })).toBeTruthy(); expect(screen.getByText("No signup required")).toBeTruthy(); @@ -170,7 +168,7 @@ describe("WelcomeModal", () => { expect(answer).toHaveAttribute("aria-hidden", "false"); expect(answer).toHaveAttribute("data-state", "open"); expect( - screen.getByText(/Compass is for busy minimalists who value focus/), + screen.getByText(/Compass is for busy minimalists who'd rather fly/), ).toBeTruthy(); await user.click(questionButton); diff --git a/packages/web/src/components/WelcomeModal/faq.ts b/packages/web/src/components/WelcomeModal/faq.ts index 59628763c..cad224535 100644 --- a/packages/web/src/components/WelcomeModal/faq.ts +++ b/packages/web/src/components/WelcomeModal/faq.ts @@ -2,7 +2,7 @@ export const FAQ_ITEMS = [ { question: "Who is Compass for?", answer: - "Compass is for busy minimalists who value focus, speed, and independent software. If that's you, Compass will help you do more with less.", + "Compass is for busy minimalists who'd rather fly through their calendar at the keyboard than hunt for it with a mouse. If that's you, Compass will help you do more with less.", }, { question: "Can I try it without handing over my email?", @@ -12,6 +12,6 @@ export const FAQ_ITEMS = [ { question: "How is Compass different?", answer: - "We're simpler, faster, open-source...er. We remind you of your mortality (/life).", + "Every action, including scheduling itself, is faster from the keyboard than any other calendar. We're simpler, faster, open-source...er. We remind you of your mortality (/life).", }, ];