···3838```html
3939<img src="https://YOUR-SLUG.openstatus.dev/badge?theme=dark" />
4040```
4141+4242+You can also customize the size of the badge by adding a `size` parameter:
4343+4444+- `sm
4545+- `md`
4646+- `lg`
4747+- `xl`
4848+4949+5050+```html
5151+<img src="https://YOUR-SLUG.openstatus.dev/badge?theme=dark&size=xl" />
5252+```
···7272 body: JSON.stringify({
7373 to: email,
7474 from: "OpenStatus <ping@openstatus.dev>",
7575- subject: `You have been invited to join OpenStatus.dev`,
7676- html: `<p>You have been invited by ${opts.ctx.user.email} ${!!opts.ctx.workspace.name ? `to join the workspace '${opts.ctx.workspace.name}'.` : "to join a workspace."}</p>
7575+ subject: "You have been invited to join OpenStatus.dev",
7676+ html: `<p>You have been invited by ${opts.ctx.user.email} ${
7777+ opts.ctx.workspace.name
7878+ ? `to join the workspace '${opts.ctx.workspace.name}'.`
7979+ : "to join a workspace."
8080+ }</p>
7781 <br>
7878- <p>Click here to access the workspace: <a href='https://openstatus.dev/app/invite?token=${_invitation.token}'>accept invitation</a>.</p>
8282+ <p>Click here to access the workspace: <a href='https://openstatus.dev/app/invite?token=${
8383+ _invitation.token
8484+ }'>accept invitation</a>.</p>
7985 <p>If you don't have an account yet, it will require you to create one.</p>
8086 `,
8187 }),