diff --git a/apps/docs/package.json b/apps/docs/package.json index b1134654..da496399 100644 --- a/apps/docs/package.json +++ b/apps/docs/package.json @@ -13,22 +13,10 @@ "@hookform/resolvers": "^5.2.2", "@lglab/react-qr-code": "workspace:*", "@radix-ui/react-accordion": "^1.2.12", - "@radix-ui/react-alert-dialog": "^1.1.15", - "@radix-ui/react-aspect-ratio": "^1.1.8", - "@radix-ui/react-avatar": "^1.1.11", "@radix-ui/react-checkbox": "^1.3.3", - "@radix-ui/react-collapsible": "^1.1.12", - "@radix-ui/react-context-menu": "^2.2.16", "@radix-ui/react-dialog": "^1.1.15", - "@radix-ui/react-dropdown-menu": "^2.1.16", - "@radix-ui/react-hover-card": "^1.1.15", "@radix-ui/react-label": "^2.1.8", - "@radix-ui/react-menubar": "^1.1.16", - "@radix-ui/react-navigation-menu": "^1.2.14", "@radix-ui/react-popover": "^1.1.15", - "@radix-ui/react-progress": "^1.1.8", - "@radix-ui/react-radio-group": "^1.3.8", - "@radix-ui/react-scroll-area": "^1.2.10", "@radix-ui/react-select": "^2.2.6", "@radix-ui/react-separator": "^1.1.8", "@radix-ui/react-slider": "^1.3.6", @@ -37,35 +25,28 @@ "@radix-ui/react-tabs": "^1.1.13", "@radix-ui/react-toast": "^1.2.15", "@radix-ui/react-toggle": "^1.1.10", - "@radix-ui/react-toggle-group": "^1.1.11", "@radix-ui/react-tooltip": "^1.2.8", "@uiw/react-color": "^2.9.2", "@vercel/analytics": "^1.6.1", "class-variance-authority": "^0.7.1", "clsx": "^2.1.1", - "cmdk": "1.1.1", "date-fns": "^4.1.0", - "embla-carousel-react": "^8.6.0", - "eslint-config-next": "16.0.10", - "input-otp": "^1.4.2", + "eslint-config-next": "16.1.0", "lucide-react": "^0.561.0", - "next": "16.0.10", + "next": "16.1.0", "next-themes": "^0.4.6", "prism-react-renderer": "^2.4.1", "react": "^19.2.3", "react-dom": "^19.2.3", "react-hook-form": "^7.68.0", "react-icons": "^5.5.0", - "react-resizable-panels": "^3.0.6", - "sonner": "^2.0.7", "tailwind-merge": "^3.4.0", - "tailwindcss-animate": "^1.0.7", - "vaul": "^1.1.2" + "tailwindcss-animate": "^1.0.7" }, "devDependencies": { "@tailwindcss/postcss": "^4.1.18", "@trivago/prettier-plugin-sort-imports": "^6.0.0", - "@types/node": "^25.0.2", + "@types/node": "^25.0.3", "@types/react": "^19.2.7", "@types/react-dom": "^19.2.3", "postcss": "^8.5.6", diff --git a/apps/docs/public/ads.txt b/apps/docs/public/ads.txt deleted file mode 100644 index 35cb29ea..00000000 --- a/apps/docs/public/ads.txt +++ /dev/null @@ -1 +0,0 @@ -google.com, pub-2719760599736246, DIRECT, f08c47fec0942fa0 \ No newline at end of file diff --git a/apps/docs/src/components/ui/alert-dialog.tsx b/apps/docs/src/components/ui/alert-dialog.tsx deleted file mode 100644 index fc449325..00000000 --- a/apps/docs/src/components/ui/alert-dialog.tsx +++ /dev/null @@ -1,134 +0,0 @@ -'use client' - -import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog' -import * as React from 'react' - -import { buttonVariants } from '@/components/ui/button' - -import { cn } from '@/lib/utils' - -const AlertDialog = AlertDialogPrimitive.Root - -const AlertDialogTrigger = AlertDialogPrimitive.Trigger - -const AlertDialogPortal = AlertDialogPrimitive.Portal - -const AlertDialogOverlay = React.forwardRef< - React.ElementRef, - React.ComponentPropsWithoutRef ->(({ className, ...props }, ref) => ( - -)) -AlertDialogOverlay.displayName = AlertDialogPrimitive.Overlay.displayName - -const AlertDialogContent = React.forwardRef< - React.ElementRef, - React.ComponentPropsWithoutRef ->(({ className, ...props }, ref) => ( - - - - -)) -AlertDialogContent.displayName = AlertDialogPrimitive.Content.displayName - -const AlertDialogHeader = ({ - className, - ...props -}: React.HTMLAttributes) => ( -
-) -AlertDialogHeader.displayName = 'AlertDialogHeader' - -const AlertDialogFooter = ({ - className, - ...props -}: React.HTMLAttributes) => ( -
-) -AlertDialogFooter.displayName = 'AlertDialogFooter' - -const AlertDialogTitle = React.forwardRef< - React.ElementRef, - React.ComponentPropsWithoutRef ->(({ className, ...props }, ref) => ( - -)) -AlertDialogTitle.displayName = AlertDialogPrimitive.Title.displayName - -const AlertDialogDescription = React.forwardRef< - React.ElementRef, - React.ComponentPropsWithoutRef ->(({ className, ...props }, ref) => ( - -)) -AlertDialogDescription.displayName = AlertDialogPrimitive.Description.displayName - -const AlertDialogAction = React.forwardRef< - React.ElementRef, - React.ComponentPropsWithoutRef ->(({ className, ...props }, ref) => ( - -)) -AlertDialogAction.displayName = AlertDialogPrimitive.Action.displayName - -const AlertDialogCancel = React.forwardRef< - React.ElementRef, - React.ComponentPropsWithoutRef ->(({ className, ...props }, ref) => ( - -)) -AlertDialogCancel.displayName = AlertDialogPrimitive.Cancel.displayName - -export { - AlertDialog, - AlertDialogPortal, - AlertDialogOverlay, - AlertDialogTrigger, - AlertDialogContent, - AlertDialogHeader, - AlertDialogFooter, - AlertDialogTitle, - AlertDialogDescription, - AlertDialogAction, - AlertDialogCancel, -} diff --git a/apps/docs/src/components/ui/alert.tsx b/apps/docs/src/components/ui/alert.tsx deleted file mode 100644 index c2830a39..00000000 --- a/apps/docs/src/components/ui/alert.tsx +++ /dev/null @@ -1,55 +0,0 @@ -import { type VariantProps, cva } from 'class-variance-authority' -import * as React from 'react' - -import { cn } from '@/lib/utils' - -const alertVariants = cva( - 'relative w-full rounded-lg border px-4 py-3 text-sm [&>svg+div]:translate-y-[-3px] [&>svg]:absolute [&>svg]:left-4 [&>svg]:top-4 [&>svg]:text-foreground [&>svg~*]:pl-7', - { - variants: { - variant: { - default: 'bg-background text-foreground', - destructive: - 'border-destructive/50 text-destructive dark:border-destructive [&>svg]:text-destructive', - }, - }, - defaultVariants: { - variant: 'default', - }, - }, -) - -const Alert = React.forwardRef< - HTMLDivElement, - React.HTMLAttributes & VariantProps ->(({ className, variant, ...props }, ref) => ( -
-)) -Alert.displayName = 'Alert' - -const AlertTitle = React.forwardRef< - HTMLParagraphElement, - React.HTMLAttributes ->(({ className, ...props }, ref) => ( -
-)) -AlertTitle.displayName = 'AlertTitle' - -const AlertDescription = React.forwardRef< - HTMLParagraphElement, - React.HTMLAttributes ->(({ className, ...props }, ref) => ( -
-)) -AlertDescription.displayName = 'AlertDescription' - -export { Alert, AlertTitle, AlertDescription } diff --git a/apps/docs/src/components/ui/aspect-ratio.tsx b/apps/docs/src/components/ui/aspect-ratio.tsx deleted file mode 100644 index 794c6f4c..00000000 --- a/apps/docs/src/components/ui/aspect-ratio.tsx +++ /dev/null @@ -1,7 +0,0 @@ -'use client' - -import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio' - -const AspectRatio = AspectRatioPrimitive.Root - -export { AspectRatio } diff --git a/apps/docs/src/components/ui/avatar.tsx b/apps/docs/src/components/ui/avatar.tsx deleted file mode 100644 index 62aa46f4..00000000 --- a/apps/docs/src/components/ui/avatar.tsx +++ /dev/null @@ -1,50 +0,0 @@ -'use client' - -import * as AvatarPrimitive from '@radix-ui/react-avatar' -import * as React from 'react' - -import { cn } from '@/lib/utils' - -const Avatar = React.forwardRef< - React.ElementRef, - React.ComponentPropsWithoutRef ->(({ className, ...props }, ref) => ( - -)) -Avatar.displayName = AvatarPrimitive.Root.displayName - -const AvatarImage = React.forwardRef< - React.ElementRef, - React.ComponentPropsWithoutRef ->(({ className, ...props }, ref) => ( - -)) -AvatarImage.displayName = AvatarPrimitive.Image.displayName - -const AvatarFallback = React.forwardRef< - React.ElementRef, - React.ComponentPropsWithoutRef ->(({ className, ...props }, ref) => ( - -)) -AvatarFallback.displayName = AvatarPrimitive.Fallback.displayName - -export { Avatar, AvatarImage, AvatarFallback } diff --git a/apps/docs/src/components/ui/breadcrumb.tsx b/apps/docs/src/components/ui/breadcrumb.tsx deleted file mode 100644 index d214f97c..00000000 --- a/apps/docs/src/components/ui/breadcrumb.tsx +++ /dev/null @@ -1,112 +0,0 @@ -import { Slot } from '@radix-ui/react-slot' -import { ChevronRight, MoreHorizontal } from 'lucide-react' -import * as React from 'react' - -import { cn } from '@/lib/utils' - -const Breadcrumb = React.forwardRef< - HTMLElement, - React.ComponentPropsWithoutRef<'nav'> & { - separator?: React.ReactNode - } ->(({ ...props }, ref) =>