Skip to content
Open
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
10 changes: 5 additions & 5 deletions .claude/settings.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"permissions": {
"rules": [
"allow": [
"mcp__plugin_playwright_playwright",
"Edit(docs/**)",
"Edit(*.mdx)",
"Edit(*.md)",
"Edit(*.md)",
"Edit(docs.json)",
"Read(**)",
"Bash(git *)",
"Bash(gh *)",
"Bash(npm *)"
],
"mode": "acceptEdits"
]
}
}
}
53 changes: 19 additions & 34 deletions index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ mode: "wide"
Checkly combines **testing**, **monitoring**, and **incident communication** <br />into a single platform to help you catch issues before your users do.

<Columns cols={2}>
<Card title="What is Checkly?" icon="rocket" href="/what-is-checkly" cta="Learn more">
<Card title="What is Checkly?" icon="rocket" href="/what-is-checkly">
Learn more about how Checkly works for modern teams.
</Card>

<Card title="Quick Start" icon="bolt" href="/quickstart" cta="Get started">
<Card title="Quick Start" icon="bolt" href="/quickstart">
Get up and running with tests and monitors deployed in 5 minutes.
</Card>
</Columns>
Expand All @@ -25,88 +25,73 @@ Get up and running with tests and monitors deployed in 5 minutes.
## Product Documentation

<Columns cols={3}>
<Card title="Detect" href="/detect/overview" img="/images/Detect.svg">
#### Monitor & Test

<Card title="Detect" href="/detect/overview" img="/images/Detect.svg">
Detect issues before they happen with multiple layers of detection from around the globe.
</Card>

<Card title="Communicate" href="/communicate/overview" img="/images/Communicate.svg">
#### Alerts & Status

<Card title="Communicate" href="/communicate/overview" img="/images/Communicate.svg">
Get notified when issues happen with smart alerting, status pages, and dashboards.
</Card>

<Card title="Resolve" href="/resolve/overview" img="/images/Resolve.svg">
#### Debug & Fix

<Card title="Resolve" href="/resolve/overview" img="/images/Resolve.svg">
Debug issues with distributed OTel tracing, AI-powered insights, and performance analysis.
</Card>
</Columns>

---

## Developer Tools Documentation

<Columns cols={3}>
<Card title="Constructs" icon="building-columns" href="/constructs/overview">
Build and deploy monitoring infrastructure with reusable code constructs.
</Card>


<Card title="CLI" icon="terminal" href="/cli/overview">
Get everything you need to monitor and test your applications continuously with the Checkly CLI.
</Card>

<Card title="API" icon="code" href="/api-reference/overview">
Extend the Checkly platform with our powerful REST API and SDKs.
</Card>



</Columns>

---

## Learn More

<Columns cols={3}>
<Card title="Learn" href="/learn/overview">
#### Reliability Fundamentals

Learn the fundamentals of reliability and how to build a reliable application.
</Card>

<Card title="Guides" href="/guides/">
#### How-to Guides

Implementation tutorials, best practices, and real-world examples.
</Card>
<Card title="Learn" icon="graduation-cap" href="/learn/overview">
Learn the fundamentals of reliability and how to build a reliable application.
</Card>

<Card title="Community" href="https://www.checklyhq.com/slack/">
#### Join the Checkly Community
<Card title="Guides" icon="book-open" href="/guides/">
Implementation tutorials, best practices, and real-world examples.
</Card>

Ask questions and get help from the Checkly team and other users.
</Card>
<Card title="Community" icon="slack" href="https://www.checklyhq.com/slack/">
Ask questions and get help from the Checkly team and other users.
</Card>
</Columns>

---

## Quick Links

<Columns cols={4}>
<Card title="What is Checkly?" href="/what-is-checkly">
<Card title="What is Checkly?" icon="circle-info" href="/what-is-checkly">
Platform overview
</Card>

<Card title="Create API Check" href="/detect/synthetic-monitoring/api-checks/quickstart">
<Card title="Create API Check" icon="gauge" href="/detect/synthetic-monitoring/api-checks/quickstart">
Monitor APIs
</Card>

<Card title="Set up Alerts" href="/communicate/overview">
<Card title="Set up Alerts" icon="bell" href="/communicate/overview">
Get notified
</Card>

<Card title="Deploy with CLI" href="/cli/overview/">
<Card title="Deploy with CLI" icon="terminal" href="/cli/overview/">
Monitoring as code
</Card>
</Columns>
23 changes: 23 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,26 @@ tr {
border-color: rgba(255, 255, 255, 0.2);
color: #e6e6e6;
}

/* Expand small header icon buttons to a 44x44 minimum touch target
(WCAG 2.5.5) via an invisible hit-area overlay, so the visual header
layout is unchanged and the theme's responsive show/hide still applies. */
header button[aria-label="Open search"],
header button[aria-label="Toggle assistant panel"],
header button[aria-label="Toggle dark mode"],
header button[aria-label="More actions"] {
position: relative;
}

header button[aria-label="Open search"]::after,
header button[aria-label="Toggle assistant panel"]::after,
header button[aria-label="Toggle dark mode"]::after,
header button[aria-label="More actions"]::after {
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 44px;
height: 44px;
transform: translate(-50%, -50%);
}
Loading