function RouteComponent() {
const { pathname } = Route.useParams();
return (
<>
<AuthCard
pathname={pathname}
socialLayout="auto"
redirectTo="/profile"
classNames={{ title: "text-center", description: "text-center" }}
/>
</>
);
}
function RouteComponent() {
const { pathname } = Route.useParams();
return (
<>
<AuthCard
pathname={pathname}
socialLayout="auto"
redirectTo="/profile"
classNames={{ title: "text-center", description: "text-center" }}
/>
</>
);
}