import { Form, Outlet, useNavigation } from "@remix-run/react"; import { LogOutIcon } from "lucide-react"; import { Button } from "~/components/ui/button"; import RegisterCarousel from "../auth/components/RegisterCarousel"; export default function OTPLayout() { const navigation = useNavigation(); return (
); }