Skip to content

Commit

Permalink
closer
Browse files Browse the repository at this point in the history
  • Loading branch information
richardgill committed Apr 1, 2024
1 parent 589e6e3 commit 4db90bd
Show file tree
Hide file tree
Showing 16 changed files with 21 additions and 22 deletions.
2 changes: 1 addition & 1 deletion apps/docs/src/components/blog-header.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
import { buttonVariants } from "@/components/ui/button";
import { buttonVariants } from "@/components/ui/Button";
import { getCategories } from "@/lib/fetchers";
import { cn } from "@/lib/utils";
import { Icon } from "astro-icon/components";
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/components/cards/BlogCard.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
import { Badge } from "@/components/ui/badge";
import { Badge } from "@/components/ui/Badge";
import { formatDate } from "@/lib/utils";
import { Image } from "astro:assets";
import type { CollectionEntry } from "astro:content";
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/components/faq-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
AccordionContent,
AccordionItem,
AccordionTrigger,
} from "@/components/ui/accordion";
} from "@/components/ui/Accordion";

const faqData = [
{
Expand Down
6 changes: 3 additions & 3 deletions apps/docs/src/components/forms/WaitlistForm.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Button } from "@/components/ui/button";
import { Button } from "@/components/ui/Button";
import {
Form,
FormControl,
Expand All @@ -7,8 +7,8 @@ import {
FormItem,
FormLabel,
FormMessage,
} from "@/components/ui/form";
import { Input } from "@/components/ui/input";
} from "@/components/ui/Form";
import { Input } from "@/components/ui/Input";
import { zodResolver } from "@hookform/resolvers/zod";
import { useForm } from "react-hook-form";
import { toast } from "sonner";
Expand Down
6 changes: 3 additions & 3 deletions apps/docs/src/components/layout/SheetMobileNav.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import * as React from "react";

import { Button } from "@/components/ui/button";
import { ScrollArea } from "@/components/ui/scroll-area";
import { Sheet, SheetContent, SheetTrigger } from "@/components/ui/sheet";
import { Button } from "@/components/ui/Button";
import { ScrollArea } from "@/components/ui/ScrollArea";
import { Sheet, SheetContent, SheetTrigger } from "@/components/ui/Sheet";
import { siteConfig } from "@/config/site";
import { Icons } from "@/icons";
import type { MainNavItem, SidebarNavItem } from "@/types";
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/components/pager.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
import { buttonVariants } from "@/components/ui/button";
import { buttonVariants } from "@/components/ui/Button";
import { docsConfig } from "@/config/docs";
import { cn } from "@/lib/utils";
import { Icon } from "astro-icon/components";
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion apps/docs/src/components/ui/form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
type FieldValues,
} from "react-hook-form";

import { Label } from "@/components/ui/label";
import { Label } from "@/components/ui/Label";
import { cn } from "@/lib/utils";

const Form = FormProvider;
Expand Down
4 changes: 2 additions & 2 deletions apps/docs/src/layouts/blog-post.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
import { Badge } from "@/components/ui/badge";
import { buttonVariants } from "@/components/ui/button";
import { Badge } from "@/components/ui/Badge";
import { buttonVariants } from "@/components/ui/Button";
import { cn, formatDate } from "@/lib/utils";
import { Icon } from "astro-icon/components";
import { Image } from "astro:assets";
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/layouts/guide-post.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
import { DashboardTableOfContents } from "@/components/toc";
import { buttonVariants } from "@/components/ui/button";
import { buttonVariants } from "@/components/ui/Button";
import { getTableOfContents } from "@/lib/toc";
import { cn, formatDate } from "@/lib/utils";
import { Icon } from "astro-icon/components";
Expand Down
4 changes: 2 additions & 2 deletions apps/docs/src/pages/changelog/[slug].astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
import { getCollection } from "astro:content";
import MainLayout from "@/layouts/main-layout.astro";
import { cn, formatDate } from "@/lib/utils";
import { Badge } from "@/components/ui/badge";
import { buttonVariants } from "@/components/ui/button";
import { Badge } from "@/components/ui/Badge";
import { buttonVariants } from "@/components/ui/Button";
import { Icon } from "astro-icon/components";
export async function getStaticPaths() {
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/pages/changelog/index.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
import PageHeader from "@/components/page-header.astro";
import { Badge } from "@/components/ui/badge";
import { Badge } from "@/components/ui/Badge";
import MainLayout from "@/layouts/main-layout.astro";
import { formatDate } from "@/lib/utils";
import { getCollection } from "astro:content";
Expand Down
3 changes: 1 addition & 2 deletions apps/docs/src/pages/docs/[...slug].astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import DocsSidebarNav from "@/components/layout/SidebarNav.astro";
import DocsPageHeader from "@/components/page-header.astro";
import DocsPager from "@/components/pager.astro";
import { DashboardTableOfContents } from "@/components/toc";
import { ScrollArea } from "@/components/ui/scroll-area";
import { ScrollArea } from "@/components/ui/ScrollArea";
import { docsConfig } from "@/config/docs";
import MainLayout from "../../layouts/main-layout.astro";
import { getTableOfContents } from "@/lib/toc";
Expand Down Expand Up @@ -80,4 +80,3 @@ if (!slug || !doc) {
</div>
</div>
</MainLayout>
@/components/content/MdxComponents
2 changes: 1 addition & 1 deletion apps/docs/src/pages/index.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
import { buttonVariants } from "@/components/ui/button";
import { buttonVariants } from "@/components/ui/Button";
import { siteConfig } from "@/config/site";
import MainLayout from "@/layouts/main-layout.astro";
import { cn } from "@/lib/utils";
Expand Down
4 changes: 2 additions & 2 deletions apps/docs/src/pages/newsletter.astro
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
export const prerender = false;
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Button } from "@/components/ui/Button";
import { Input } from "@/components/ui/Input";
import MainLayout from "@/layouts/main-layout.astro";
import { cn } from "@/lib/utils";
import { Icon } from "astro-icon/components";
Expand Down

0 comments on commit 4db90bd

Please sign in to comment.