2 Commits

Author SHA1 Message Date
36af41cbe4 some more docs content
Some checks failed
Deploy / deploy (ubuntu-latest, 2.44.0) (push) Has been cancelled
Took 18 minutes
2024-10-07 20:01:53 -04:00
fbde7667bc use proper page extension for edit links
Took 9 minutes
2024-10-07 19:43:41 -04:00
8 changed files with 29 additions and 12 deletions

View File

@ -21,10 +21,3 @@ your services and start monitoring them. See [Next Steps](#next-steps) for more.
- First, head to our [Dashboard](https://pulseapp.cc/dashboard) and fill out the form. ![Registering](https://cdn.rainnny.club/auhNOjrcYz6u.png)
- Next, complete the onboarding process and set up your first organization, and status page. ![Onboarding](https://cdn.rainnny.club/AfDgjHG5QTpZ.png)
- Finally, you can [start monitoring your services](#next-steps)!
### Next Steps
#### Components
...
#### Automations
...

View File

@ -0,0 +1,8 @@
---
title: '🐋 Docker'
published: '2024-10-07'
summary: 'petentium usu tota noluisse errem elaboraret auctor.'
---
# Deploying on Docker
...

View File

@ -0,0 +1,8 @@
---
title: '🧩 Components'
published: '2024-10-07'
summary: 'petentium usu tota noluisse errem elaboraret auctor.'
---
# Components
...

View File

@ -0,0 +1,8 @@
---
title: '✔️ Supported Services'
published: '2024-10-07'
summary: 'petentium usu tota noluisse errem elaboraret auctor.'
---
# Supported Services
Below is a list of all the services that are currently supported by Pulse App. Are we missing a service? Please [open an issue](https://git.rainnny.club/PulseApp/API/issues)!

Binary file not shown.

Before

Width:  |  Height:  |  Size: 43 KiB

View File

@ -26,8 +26,8 @@ const DocsPage = async ({
}: {
params: Promise<{ slug: string[] }>;
}): Promise<ReactElement> => {
const slug: string = (((await params).slug as string[]) || undefined)?.join(
"/"
const slug: string = decodeURIComponent(
(((await params).slug as string[]) || undefined)?.join("/")
);
// Get the content to display based on the provided slug

View File

@ -148,7 +148,7 @@ const Footer = ({ page }: { page: DocsContentMetadata }): ReactElement => {
{/* Edit on Git */}
<Link
className="flex gap-1.5 items-center text-xs hover:opacity-75 transition-all transform-gpu group"
href={`https://git.rainnny.club/PulseApp/docs/src/branch/master/docs/${page.slug}.md`}
href={`https://git.rainnny.club/PulseApp/docs/src/branch/master/docs/${page.slug}${page.extension}`}
target="_blank"
draggable={false}
>

View File

@ -83,7 +83,7 @@ const CategoryItem = ({
{hasChildren && (
<motion.div
initial={false}
animate={{ rotate: isOpen ? 90 : 180 }}
animate={{ rotate: isOpen ? 90 : 0 }}
transition={{ duration: 0.2 }}
>
<ChevronRight className="w-4 h-4" />