From 71cad75ffd458b47b8f7f0e2d493c644def285c8 Mon Sep 17 00:00:00 2001 From: rajun Date: Tue, 28 Jul 2026 11:12:47 +0530 Subject: [PATCH] feat: add global model-viewer script, toast notifications, and app theme --- app/root.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/root.tsx b/app/root.tsx index 8e0df69..4f3b053 100644 --- a/app/root.tsx +++ b/app/root.tsx @@ -24,6 +24,8 @@ export const links: Route.LinksFunction = () => [ }, ]; +import { Toaster } from "sonner"; + export function Layout({ children }: { children: React.ReactNode }) { return ( @@ -32,11 +34,13 @@ export function Layout({ children }: { children: React.ReactNode }) { + - + {children} + );