From 0d6c4b778835d5c2ee3f70dbf6336b44754765c4 Mon Sep 17 00:00:00 2001 From: Mukesh Singh Date: Tue, 29 Oct 2024 20:09:51 +0530 Subject: [PATCH] theme applied --- content/getting-started/index.mdx | 5 +---- content/getting-started/installation.mdx | 10 +++++++--- tailwind.config.js | 18 +++++++++++------- 3 files changed, 19 insertions(+), 14 deletions(-) diff --git a/content/getting-started/index.mdx b/content/getting-started/index.mdx index e5db561..f0de285 100644 --- a/content/getting-started/index.mdx +++ b/content/getting-started/index.mdx @@ -4,10 +4,7 @@ description: Setup and start integrating the Shield in your existing system. --- - + We have a docker images for amd64 and arm64. diff --git a/content/getting-started/installation.mdx b/content/getting-started/installation.mdx index df3f6cd..68adf3c 100644 --- a/content/getting-started/installation.mdx +++ b/content/getting-started/installation.mdx @@ -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).* + + +You can find the docker image on [docker hub](https://hub.docker.com/r/shieldauth/shield) + + ## Prerequisites @@ -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._ diff --git a/tailwind.config.js b/tailwind.config.js index c9b20f9..d61f542 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -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()], };