# Status Widget
Create an account on [openstatus.dev](https://openstatus.dev), start monitoring
your endpoints and include your own StatusWidget into your React Application.

## Install
```bash
npm install @openstatus/react
pnpm add @openstatus/react
yarn add @openstatus/react
bun add @openstatus/react
```
## How to use the StatusWidget in your Next.js App Router
### Include the styles.css
If you are using tailwind, extend your config with:
```js
// tailwind.config.js
module.exports = {
content: [
"./app/**/*.{tsx,ts,mdx,md}",
// OpenStatus Widget
"./node_modules/@openstatus/react/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
};
```
Otherwise, include the styles in your App:
```tsx
// app/layout.tsx
import "@openstatus/react/dist/styles.css";
```
The `StatusWidget` is a React Server Component. Include the `slug` to your
status-page.
```tsx
import { StatusWidget } from "@openstatus/react";
export function Page() {
return