From 9498c5e16d4147feb919e366289dc3c1c15e4387 Mon Sep 17 00:00:00 2001
From: Aron
Date: Thu, 20 Jun 2024 23:18:10 +0800
Subject: [PATCH] Update routes
---
.../[locale]/guide/configuration/content.mdx | 2 +-
.../introduction/components/Comparisons.mdx | 6 +--
.../guide/migration/tailwindcss/content.mdx | 2 +-
.../responsive-design/components/Default.tsx | 50 -------------------
.../guide/responsive-design/content.mdx | 8 +--
.../style-declarations/components/Tokens.mdx | 2 +-
site/app/[locale]/guide/variables/content.mdx | 6 +--
.../[locale]/reference/content/content.mdx | 2 +-
.../reference/font-family/content.mdx | 2 +-
.../[locale]/reference/screens/content.mdx | 8 +--
10 files changed, 16 insertions(+), 72 deletions(-)
delete mode 100644 site/app/[locale]/guide/responsive-design/components/Default.tsx
diff --git a/site/app/[locale]/guide/configuration/content.mdx b/site/app/[locale]/guide/configuration/content.mdx
index f8a719bdf..cbaa84e0c 100644
--- a/site/app/[locale]/guide/configuration/content.mdx
+++ b/site/app/[locale]/guide/configuration/content.mdx
@@ -46,7 +46,7 @@ Customizing abstract [styles](/guide/styles) for your design system.
{eachBreakpointName}
{eachBreakpoint}px
- {require('!!raw-loader!./tests/add-a-screen-size/master.css.js').default}
Apply the defined screen variables anywhere:
{require('!!raw-loader!./tests/add-a-screen-size/template.html').default}
@@ -230,7 +230,7 @@ For other intermediate values, `0`, `1`, `2`, ..., we tend to use unitless token
```
### Add a spacing
-Customize your spacing [variables](/reference/variables), in `xs~xl`.
+Customize your spacing [variables](/guide/variables), in `xs~xl`.
```js name=master.css.js
export default {
variables: {
diff --git a/site/app/[locale]/reference/content/content.mdx b/site/app/[locale]/reference/content/content.mdx
index 83655871e..7b0984c46 100644
--- a/site/app/[locale]/reference/content/content.mdx
+++ b/site/app/[locale]/reference/content/content.mdx
@@ -22,7 +22,7 @@ Whitespace is used in the class attribute of the template to separate different
```
Is it not very kind to use `\00a0` in markup?
-(o) Predefine your content [variables](/reference/variables) without `\00a0`.
+(o) Predefine your content [variables](/guide/variables) without `\00a0`.
```js name=master.css.js
/** @type {import('@master/css').Config} */
export default {
diff --git a/site/app/[locale]/reference/font-family/content.mdx b/site/app/[locale]/reference/font-family/content.mdx
index 158111051..9004fb5ff 100644
--- a/site/app/[locale]/reference/font-family/content.mdx
+++ b/site/app/[locale]/reference/font-family/content.mdx
@@ -17,7 +17,7 @@
-Using shorthand with predefined [variables](/reference/variables) to simplify the native syntax.
+Using shorthand with predefined [variables](/guide/variables) to simplify the native syntax.
```html