Skip to content

Commit 4db90bd

Browse files
committed
closer
1 parent 589e6e3 commit 4db90bd

File tree

16 files changed

+21
-22
lines changed

16 files changed

+21
-22
lines changed

apps/docs/src/components/blog-header.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
import { buttonVariants } from "@/components/ui/button";
2+
import { buttonVariants } from "@/components/ui/Button";
33
import { getCategories } from "@/lib/fetchers";
44
import { cn } from "@/lib/utils";
55
import { Icon } from "astro-icon/components";

apps/docs/src/components/cards/BlogCard.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
import { Badge } from "@/components/ui/badge";
2+
import { Badge } from "@/components/ui/Badge";
33
import { formatDate } from "@/lib/utils";
44
import { Image } from "astro:assets";
55
import type { CollectionEntry } from "astro:content";

apps/docs/src/components/faq-section.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {
33
AccordionContent,
44
AccordionItem,
55
AccordionTrigger,
6-
} from "@/components/ui/accordion";
6+
} from "@/components/ui/Accordion";
77

88
const faqData = [
99
{

apps/docs/src/components/forms/WaitlistForm.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Button } from "@/components/ui/button";
1+
import { Button } from "@/components/ui/Button";
22
import {
33
Form,
44
FormControl,
@@ -7,8 +7,8 @@ import {
77
FormItem,
88
FormLabel,
99
FormMessage,
10-
} from "@/components/ui/form";
11-
import { Input } from "@/components/ui/input";
10+
} from "@/components/ui/Form";
11+
import { Input } from "@/components/ui/Input";
1212
import { zodResolver } from "@hookform/resolvers/zod";
1313
import { useForm } from "react-hook-form";
1414
import { toast } from "sonner";

apps/docs/src/components/layout/SheetMobileNav.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import * as React from "react";
22

3-
import { Button } from "@/components/ui/button";
4-
import { ScrollArea } from "@/components/ui/scroll-area";
5-
import { Sheet, SheetContent, SheetTrigger } from "@/components/ui/sheet";
3+
import { Button } from "@/components/ui/Button";
4+
import { ScrollArea } from "@/components/ui/ScrollArea";
5+
import { Sheet, SheetContent, SheetTrigger } from "@/components/ui/Sheet";
66
import { siteConfig } from "@/config/site";
77
import { Icons } from "@/icons";
88
import type { MainNavItem, SidebarNavItem } from "@/types";

apps/docs/src/components/pager.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
import { buttonVariants } from "@/components/ui/button";
2+
import { buttonVariants } from "@/components/ui/Button";
33
import { docsConfig } from "@/config/docs";
44
import { cn } from "@/lib/utils";
55
import { Icon } from "astro-icon/components";

apps/docs/src/components/ui/form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
type FieldValues,
1111
} from "react-hook-form";
1212

13-
import { Label } from "@/components/ui/label";
13+
import { Label } from "@/components/ui/Label";
1414
import { cn } from "@/lib/utils";
1515

1616
const Form = FormProvider;

apps/docs/src/layouts/blog-post.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
import { Badge } from "@/components/ui/badge";
3-
import { buttonVariants } from "@/components/ui/button";
2+
import { Badge } from "@/components/ui/Badge";
3+
import { buttonVariants } from "@/components/ui/Button";
44
import { cn, formatDate } from "@/lib/utils";
55
import { Icon } from "astro-icon/components";
66
import { Image } from "astro:assets";

0 commit comments

Comments
 (0)