diff --git a/docs/charts/introduction.mdx b/docs/charts/introduction.mdx index e4f4c65..7f9cd67 100644 --- a/docs/charts/introduction.mdx +++ b/docs/charts/introduction.mdx @@ -1,9 +1,34 @@ # Charts +Charts are powerful visual representations of data that help us understand patterns, trends, and relationships. In this library, we provide a variety of chart components that you can use to display data in different formats. + import { Card } from '@/ui/components/Card'; -import { chartDataMedium } from "@/docs/charts/_lib/data"; +import { chartDataMedium, radarDataMedium } from "@/docs/charts/_lib/data"; +import { AreaChart } from '@/ui/charts/AreaChart'; import { BarChart } from '@/ui/charts/BarChart'; +import { LinePlot } from '@/ui/charts/LinePlot'; +import { PieChart } from '@/ui/charts/PieChart'; +import { RadarChart } from '@/ui/charts/RadarChart'; + +
+ + + + + + + + + + + + + + + + + + + +
- - - diff --git a/docs/components/introduction.mdx b/docs/components/introduction.mdx index 2bee97b..0232066 100644 --- a/docs/components/introduction.mdx +++ b/docs/components/introduction.mdx @@ -1,15 +1,5 @@ # Introduction -import {Button} from '@/ui/components/Button'; -import { FileTrigger } from "react-aria-components" -import { ItalicIcon } from "lucide-react" -import { ToggleButton } from '@/ui/components/ToggleButton'; -import {GridList, GridListItem} from '@/ui/components/GridList'; -import { MoreHorizontalIcon } from "lucide-react" -import { MenuTrigger } from 'react-aria-components'; -import { Popover } from '@/ui/components/Popover'; -import { Menu, MenuItem, MenuSeparator } from '@/ui/components/Menu'; +WindCraft is a collection of components based on React Aria Components and Tailwind. These components are designed to be highly accessible and customizable, making it easier for developers to build user interfaces. -
- -
\ No newline at end of file +The styling of WindCraft components is inspired by Shadcn/ui, but it has been adapted to align with the design principles of PlatformPlatform. This ensures a consistent and cohesive look and feel across your application. \ No newline at end of file diff --git a/docs/templates/introduction.mdx b/docs/templates/introduction.mdx index 5db1c1c..649f574 100644 --- a/docs/templates/introduction.mdx +++ b/docs/templates/introduction.mdx @@ -1,8 +1,14 @@ # Introduction +This is a collection of templates that can be used to build a user interface. Each template is a composition of components that are designed to work together to provide a specific user interface. + +We have a few templates that are ready to use and are part of [PlatformPlatform](https://github.com/platformplatform/PlatformPlatform) already! + +## Example + import {Card} from '@/ui/components/Card'; import {VerifyCodeForm} from '@/ui/templates/VerifyCodeForm'; - + \ No newline at end of file diff --git a/docs/templates/user-management/account-registration-form.mdx b/docs/templates/user-management/account-registration-form.mdx index cef6338..c2c7444 100644 --- a/docs/templates/user-management/account-registration-form.mdx +++ b/docs/templates/user-management/account-registration-form.mdx @@ -1,5 +1,7 @@ # AccountRegistrationForm +The `AccountRegistrationForm` template is used to render a form that allows users to register for an account. + import { Card } from '@/ui/components/Card'; import { AccountRegistrationForm } from '@/ui/templates/AccountRegistrationForm';