Hello World
-- You can open{' '} - - /docs - {' '} - and see the documentation. -
++ {title} +
++ {description} +
++ {entry.title} +
++ {entry.description} +
+ {entry.items && entry.items.length > 0 && ( +-
+ {entry.items.map((item, itemIndex) => (
+
- + {item} + + ))} +
+ Contact Us +
++ Get in touch with the authors of Amical for any questions or support. +
++ Amical Blog +
++ Discover the latest news and updates from Amical. +
+ > + )} + + + + + > + ); +} \ No newline at end of file diff --git a/apps/www/components/ui/textarea.tsx b/apps/www/components/ui/textarea.tsx new file mode 100644 index 0000000..7f21b5e --- /dev/null +++ b/apps/www/components/ui/textarea.tsx @@ -0,0 +1,18 @@ +import * as React from "react" + +import { cn } from "@/lib/utils" + +function Textarea({ className, ...props }: React.ComponentProps<"textarea">) { + return ( + + ) +} + +export { Textarea } diff --git a/apps/www/components/ui/tooltip.tsx b/apps/www/components/ui/tooltip.tsx new file mode 100644 index 0000000..4ee26b3 --- /dev/null +++ b/apps/www/components/ui/tooltip.tsx @@ -0,0 +1,61 @@ +"use client" + +import * as React from "react" +import * as TooltipPrimitive from "@radix-ui/react-tooltip" + +import { cn } from "@/lib/utils" + +function TooltipProvider({ + delayDuration = 0, + ...props +}: React.ComponentProps