Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions packages/web/src/components/WelcomeModal/WelcomeGuideBody.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,12 @@ export function WelcomeGuideBody() {
<>
<div className="flex flex-col gap-2">
<h2 className="font-bold text-2xl text-text leading-snug">
Compass Calendar helps you manage your time, simply.
The best place to manage your schedule at the keyboard.
</h2>
<p className="text-text-muted">
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.
</p>
</div>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down Expand Up @@ -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);
Expand Down
4 changes: 2 additions & 2 deletions packages/web/src/components/WelcomeModal/faq.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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?",
Expand All @@ -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).",
},
];