diff --git a/packages/docs/biome.json b/packages/docs/biome.json new file mode 100644 index 0000000..41d707b --- /dev/null +++ b/packages/docs/biome.json @@ -0,0 +1,8 @@ +{ + "$schema": "https://biomejs.dev/schemas/latest/schema.json", + "root": false, + "extends": "//", + "files": { + "includes": ["./src/**"] + } +} diff --git a/packages/docs/docs/intro.md b/packages/docs/docs/intro.md index b37a396..9c3cd3d 100644 --- a/packages/docs/docs/intro.md +++ b/packages/docs/docs/intro.md @@ -92,7 +92,6 @@ pnpm add effect-fc effect react - Explore the [Tutorial Basics](./tutorial-basics/create-a-document.md) to learn the fundamentals - Check out the [Example Project](https://github.com/your-repo/packages/example) for a complete working application -- Read the [API Documentation](./api/) for detailed reference ## Important Notes diff --git a/packages/docs/src/pages/index.tsx b/packages/docs/src/pages/index.tsx index 2e006d1..0a49f5d 100644 --- a/packages/docs/src/pages/index.tsx +++ b/packages/docs/src/pages/index.tsx @@ -1,10 +1,10 @@ -import type {ReactNode} from 'react'; -import clsx from 'clsx'; import Link from '@docusaurus/Link'; import useDocusaurusContext from '@docusaurus/useDocusaurusContext'; -import Layout from '@theme/Layout'; import HomepageFeatures from '@site/src/components/HomepageFeatures'; import Heading from '@theme/Heading'; +import Layout from '@theme/Layout'; +import clsx from 'clsx'; +import type {ReactNode} from 'react'; import styles from './index.module.css';