import {
LucideAtSign,
LucideCircleUserRound,
LucideInfo,
LucideLogIn,
} from "lucide-react";
import { useState } from "react";
import { Button } from "@/components/Animated/Button";
import { UnderlineLink } from "@/components/Animated/UnderlinedLink";
import { Loading } from "@/components/Icons/Loading";
import { useOAuthClient } from "@/lib/oauth";
export const SignIn = () => {
const [handle, setHandle] = useState("");
const isValidHandle = handle.includes(".");
const client = useOAuthClient();
if (!client) return
Continue with an{" "}
Handle