diff --git a/apps/web/app/(app)/layout.tsx b/apps/web/app/(app)/layout.tsx new file mode 100644 index 0000000..4439a4f --- /dev/null +++ b/apps/web/app/(app)/layout.tsx @@ -0,0 +1,10 @@ +import { Nav } from "@/components/layout/nav"; + +export default function AppLayout({ children }: { children: React.ReactNode }) { + return ( + <> +