Skip to content

Commit

Permalink
Misc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
haydenbleasel committed Nov 20, 2024
1 parent 9cebd2e commit 6e5902a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion content/docs/calendar.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ import {
CalendarMonthPicker,
CalendarProvider,
CalendarYearPicker,
} from '@/registry/roadmap-ui/calendar';
} from '@/components/roadmap-ui/calendar';
import type { FC } from 'react';

const earliestYear = exampleFeatures
Expand Down
2 changes: 1 addition & 1 deletion content/docs/gantt.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ import {
GanttSidebarItem,
GanttTimeline,
GanttToday,
} from '@/registry/roadmap-ui/gantt';
} from '@/components/roadmap-ui/gantt';
import groupBy from 'lodash.groupby';
import { EyeIcon, LinkIcon, TrashIcon } from 'lucide-react';
import { type FC, useState } from 'react';
Expand Down
2 changes: 1 addition & 1 deletion content/docs/kanban.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import {
KanbanCards,
KanbanHeader,
KanbanProvider,
} from '@/registry/roadmap-ui/kanban';
} from '@/components/roadmap-ui/kanban';
import type { DragEndEvent } from '@dnd-kit/core';
import { format } from 'date-fns';
import { useState } from 'react';
Expand Down
2 changes: 1 addition & 1 deletion content/docs/list.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ npx shadcn@latest add https://www.roadmap-ui.com/list.json

import { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar';
import { exampleFeatures, exampleStatuses } from '@/lib/content';
import { ListGroup, ListItem, ListProvider } from '@/registry/roadmap-ui/list';
import { ListGroup, ListItem, ListProvider } from '@/components/roadmap-ui/list';
import type { DragEndEvent } from '@dnd-kit/core';
import { type FC, useState } from 'react';

Expand Down
4 changes: 3 additions & 1 deletion content/docs/installation.mdx → content/docs/setup.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Installation
title: Setup
description: How to install and set up Roadmap UI in your project
---

Expand All @@ -19,6 +19,8 @@ You can install Roadmap UI components using the `shadcn` CLI:
npx shadcn@latest add https://www.roadmap-ui.com/gantt.json
```

This will install the Roadmap UI components into your project at `@/components/roadmap-ui` (or the relevant folder you specified in the `components.json` file).

## Usage

After installing a Roadmap UI component, you can start using it in your React application.
Expand Down

0 comments on commit 6e5902a

Please sign in to comment.