refactor(layout): move all components to components/

This commit is contained in:
Théo LAGACHE
2026-06-23 16:06:15 +02:00
parent b1b2e33839
commit 13ef2a0e6e
38 changed files with 33 additions and 33 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ import { CardContent, CardHeader } from "@/components/ui/card";
import { TooltipProvider } from "@/components/ui/tooltip";
import { ForgotPasswordForm } from "@/features/auth/components/forgot-password-form";
import { env } from "@/env.mjs";
import { CardAuth } from "@/features/layout/card-auth";
import { CardAuth } from "@/features/layout/components/card-auth";
import { redirect } from "next/navigation";
export default async function RoutePage(props: { searchParams: Promise<{ callbackUrl: string | undefined }> }) {