Skip to content

Commit

Permalink
theme applied
Browse files Browse the repository at this point in the history
  • Loading branch information
CA-MKSingh committed Oct 29, 2024
1 parent 099f203 commit 0d6c4b7
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 14 deletions.
5 changes: 1 addition & 4 deletions content/getting-started/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@ description: Setup and start integrating the Shield in your existing system.
---

<Cards>
<Card
title="Installation"
href="https://docs.shield.rs/getting-started/installation"
>
<Card title="Installation" href="/getting-started/installation">
We have a docker images for amd64 and arm64.
</Card>
</Cards>
10 changes: 7 additions & 3 deletions content/getting-started/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ title: Installation
description: We have a docker images for amd64 and arm64.
---

👉*You can find the docker image on [docker hub](https://hub.docker.com/r/shieldauth/shield).*
<Callout>

You can find the docker image on [docker hub](https://hub.docker.com/r/shieldauth/shield)

</Callout>

## Prerequisites

Expand Down Expand Up @@ -42,5 +46,5 @@ To view them:
docker exec shield-shield-1 cat /usr/local/bin/logs/default_cred.json
```

*Note: If the above command doesn't work, use `docker ps` to find the correct
container ID for the shield container.*
_Note: If the above command doesn't work, use `docker ps` to find the correct
container ID for the shield container._
18 changes: 11 additions & 7 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
import { createPreset } from 'fumadocs-ui/tailwind-plugin';
import { createPreset } from "fumadocs-ui/tailwind-plugin";

/** @type {import('tailwindcss').Config} */
export default {
content: [
'./components/**/*.{ts,tsx}',
'./app/**/*.{ts,tsx}',
'./content/**/*.{md,mdx}',
'./mdx-components.{ts,tsx}',
'./node_modules/fumadocs-ui/dist/**/*.js',
"./components/**/*.{ts,tsx}",
"./app/**/*.{ts,tsx}",
"./content/**/*.{md,mdx}",
"./mdx-components.{ts,tsx}",
"./node_modules/fumadocs-ui/dist/**/*.js",
],
presets: [
createPreset({
preset: "dusk",
}),
],
presets: [createPreset()],
};

0 comments on commit 0d6c4b7

Please sign in to comment.