docs(home): refresh docs and utilities#19
Conversation
There was a problem hiding this comment.
Pull request overview
This pull request refreshes the documentation and updates code style across utility files and documentation pages. The changes modernize the content to reflect the current tech stack (React 19, Tailwind v4, Storybook 10) and apply consistent formatting (single quotes, 2-space indentation, no semicolons).
- Documentation content significantly expanded with detailed system overview, stack information, and developer guidance
- Code formatting standardized across utility files to match project style conventions
- Storybook documentation reorganized with clearer navigation structure
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| src/util/date.ts | Applied code formatting changes (quotes, semicolons, indentation) |
| src/util/class-names.tsx | Applied code formatting changes (quotes, semicolons, indentation) |
| src/index.mdx | Rewrote home page with expanded system overview, modernization details, and stack information; updated imports |
| src/icons/icons.mdx | Updated imports and reformatted code for consistency |
| README.md | Comprehensive rewrite with detailed overview, stack information, and updated installation/usage instructions |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| Title, | ||
| IconGallery, | ||
| IconItem, | ||
| } from '@storybook/addon-docs/blocks' |
There was a problem hiding this comment.
The import path '@storybook/addon-docs/blocks' is incorrect for Storybook 10. The correct import path should be '@storybook/blocks'. In Storybook 10, blocks like Meta, Title, IconGallery, and IconItem are exported from the dedicated '@storybook/blocks' package, not from '@storybook/addon-docs/blocks'.
| } from '@storybook/addon-docs/blocks' | |
| } from '@storybook/blocks' |
| @@ -1,33 +1,59 @@ | |||
| import { Meta } from "@storybook/blocks"; | |||
| import { Meta } from '@storybook/addon-docs/blocks' | |||
There was a problem hiding this comment.
The import path '@storybook/addon-docs/blocks' is incorrect for Storybook 10. The correct import path should be '@storybook/blocks'. In Storybook 10, blocks like Meta, Title, IconGallery, etc. are exported from the dedicated '@storybook/blocks' package, not from '@storybook/addon-docs/blocks'.
| import { Meta } from '@storybook/addon-docs/blocks' | |
| import { Meta } from '@storybook/blocks' |
Overview
docs(home): refresh docs and utilities
Changes