From d1669f1a1c0f225f8907858c4b7ab4b6e88f11f5 Mon Sep 17 00:00:00 2001 From: Gabriele Petronella Date: Thu, 17 Oct 2024 11:15:56 +0200 Subject: [PATCH] Fix build --- .../docs/02-Getting Started/03-project-structure.mdx | 2 +- .../docs/03-Customization/03-atoms-augmentation.mdx | 1 + packages/website/docs/05-Guides/typography.mdx | 10 +++++----- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/packages/website/docs/02-Getting Started/03-project-structure.mdx b/packages/website/docs/02-Getting Started/03-project-structure.mdx index a884880af..2914f7575 100644 --- a/packages/website/docs/02-Getting Started/03-project-structure.mdx +++ b/packages/website/docs/02-Getting Started/03-project-structure.mdx @@ -163,7 +163,7 @@ export * from "./components/MyCustomComponent/MyCustomComponent"; export const BentoProvider = createBentoProvider(config, theme, sprinkles); ``` -, like we saw in [Quick Start](./Quick-Start). +, like we saw in [Quick Start](01-quick-start.mdx). ## Setting up Turborepo diff --git a/packages/website/docs/03-Customization/03-atoms-augmentation.mdx b/packages/website/docs/03-Customization/03-atoms-augmentation.mdx index 0693f957c..91a36e167 100644 --- a/packages/website/docs/03-Customization/03-atoms-augmentation.mdx +++ b/packages/website/docs/03-Customization/03-atoms-augmentation.mdx @@ -1,4 +1,5 @@ import { Canvas } from "@site/src/components/Canvas"; +import { PackageManagerCommand } from "@site/src/components/PackageManagerCommand"; # Atoms Augmentation diff --git a/packages/website/docs/05-Guides/typography.mdx b/packages/website/docs/05-Guides/typography.mdx index e8dbb2861..d66e398f8 100644 --- a/packages/website/docs/05-Guides/typography.mdx +++ b/packages/website/docs/05-Guides/typography.mdx @@ -4,11 +4,11 @@ import { Canvas } from "@site/src/components/Canvas"; Bento type scale organizes styles into five roles, semantically named to describe their purposes: -- [Display](../components/Display): reserved for short, important text or numerals. Usually, they work best on large screens. -- [Headline](../components/Headline): best suited for short, high-emphasis text. These styles can be suitable for marking primary text passages or important content regions. -- [Title](../components/Title): used to divide secondary text passages or content regions. -- [Body](../components/Body): used for longer passages of text and paragraphs. -- [Label](../components/Label): utilitarian styles used for text inside of components or very small supporting text in the content body, like captions. +- [Display](../04-Components/Display.mdx): reserved for short, important text or numerals. Usually, they work best on large screens. +- [Headline](../04-Components/Headline.mdx): best suited for short, high-emphasis text. These styles can be suitable for marking primary text passages or important content regions. +- [Title](../04-Components/Title.mdx): used to divide secondary text passages or content regions. +- [Body](../04-Components/Body.mdx): used for longer passages of text and paragraphs. +- [Label](../04-Components/Label.mdx): utilitarian styles used for text inside of components or very small supporting text in the content body, like captions. ## Usage