From 92e465db6d3c722559f5b65b0858dd94fdd66bbe Mon Sep 17 00:00:00 2001 From: Hunter Johnston <64506580+huntabyte@users.noreply.github.com> Date: Tue, 9 Jan 2024 20:40:37 -0500 Subject: [PATCH] docs: update links (#628) --- apps/www/src/content/components/sonner.md | 2 +- apps/www/src/content/dark-mode.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/www/src/content/components/sonner.md b/apps/www/src/content/components/sonner.md index b58009102..325effd3e 100644 --- a/apps/www/src/content/components/sonner.md +++ b/apps/www/src/content/components/sonner.md @@ -27,7 +27,7 @@ The Sonner component is provided by [svelte-sonner](https://svelte-sonner.vercel Setup theme support -By default, Sonner will use the user's system preferences to determine whether to show the light or dark theme. To get around this, you can either pass in a custom `theme` prop to the component, or simply use `mode-watcher` which you can hardcode to `dark` or `light` mode should you wish. +By default, Sonner will use the user's system preferences to determine whether to show the light or dark theme. To get around this, you can either pass in a custom `theme` prop to the component, or simply use [mode-watcher](https://github.com/svecosystem/mode-watcher) which you can hardcode to `dark` or `light` mode should you wish. You can learn more about setting up Dark Mode support [here](/docs/dark-mode). diff --git a/apps/www/src/content/dark-mode.md b/apps/www/src/content/dark-mode.md index 698234f16..eec8b3411 100644 --- a/apps/www/src/content/dark-mode.md +++ b/apps/www/src/content/dark-mode.md @@ -9,7 +9,7 @@ description: Adding dark mode to your site. We use the `class` strategy from Tailwind CSS to support dark mode toggling. See the [Tailwind CSS documentation](https://tailwindcss.com/docs/dark-mode#toggling-dark-mode-manually) for more information. -How you add the ` dark` class to the `html` element is up to you. In this guide, we will take a look at enabling dark mode toggling with [mode-watcher](https://github.com/huntabyte/mode-watcher). +How you add the ` dark` class to the `html` element is up to you. In this guide, we will take a look at enabling dark mode toggling with [mode-watcher](https://github.com/svecosystem/mode-watcher). ## Usage