From 0e0ba8fe9fc5aba0b9d8d91906091c2de52a67da Mon Sep 17 00:00:00 2001 From: Dominik Natter Date: Fri, 28 Mar 2025 10:15:50 +0100 Subject: [PATCH] fix deployment --- src/components/ui/accordion.tsx | 66 +++++++++++++++++++++++++++++++++ src/components/ui/input.tsx | 21 +++++++++++ tsconfig.json | 1 - 3 files changed, 87 insertions(+), 1 deletion(-) create mode 100644 src/components/ui/accordion.tsx create mode 100644 src/components/ui/input.tsx diff --git a/src/components/ui/accordion.tsx b/src/components/ui/accordion.tsx new file mode 100644 index 0000000..4a8cca4 --- /dev/null +++ b/src/components/ui/accordion.tsx @@ -0,0 +1,66 @@ +"use client" + +import * as React from "react" +import * as AccordionPrimitive from "@radix-ui/react-accordion" +import { ChevronDownIcon } from "lucide-react" + +import { cn } from "@/lib/utils" + +function Accordion({ + ...props +}: React.ComponentProps) { + return +} + +function AccordionItem({ + className, + ...props +}: React.ComponentProps) { + return ( + + ) +} + +function AccordionTrigger({ + className, + children, + ...props +}: React.ComponentProps) { + return ( + + svg]:rotate-180", + className + )} + {...props} + > + {children} + + + + ) +} + +function AccordionContent({ + className, + children, + ...props +}: React.ComponentProps) { + return ( + +
{children}
+
+ ) +} + +export { Accordion, AccordionItem, AccordionTrigger, AccordionContent } diff --git a/src/components/ui/input.tsx b/src/components/ui/input.tsx new file mode 100644 index 0000000..03295ca --- /dev/null +++ b/src/components/ui/input.tsx @@ -0,0 +1,21 @@ +import * as React from "react" + +import { cn } from "@/lib/utils" + +function Input({ className, type, ...props }: React.ComponentProps<"input">) { + return ( + + ) +} + +export { Input } diff --git a/tsconfig.json b/tsconfig.json index c25ef4b..c133409 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,7 +7,6 @@ "strict": true, "noEmit": true, "esModuleInterop": true, - "baseUrl": ".", "module": "esnext", "moduleResolution": "bundler", "resolveJsonModule": true,