diff --git a/bun.lockb b/bun.lockb index f5945cd..fcc706e 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index b338346..421bd67 100644 --- a/package.json +++ b/package.json @@ -14,6 +14,7 @@ "@radix-ui/react-label": "^2.0.2", "@radix-ui/react-separator": "^1.0.3", "@radix-ui/react-slot": "^1.0.2", + "@radix-ui/react-toast": "^1.1.5", "@radix-ui/react-tooltip": "^1.0.7", "@react-three/drei": "^9.93.0", "@react-three/fiber": "^8.15.14", @@ -23,6 +24,7 @@ "@splinetool/runtime": "^1.0.26", "@tweenjs/tween.js": "^21.0.0", "class-variance-authority": "^0.7.0", + "classnames": "^2.5.1", "clsx": "^2.1.0", "framer-motion": "^10.18.0", "jsonwebtoken": "^9.0.2", diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6e820f8..aaf7abf 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,6 +6,7 @@ import React from "react"; import { cn } from "@/lib/utils"; import TokenRefresh from "@/components/auth/TokenRefresh"; +import { Toaster } from "@/components/ui/toaster"; const fontSans = FontSans({ subsets: ["latin"], @@ -22,6 +23,7 @@ export default function RootLayout({ children }: { children: React.ReactNode })
{/*