import { Button } from "@/shared/libs/shadcn/ui/button"; import { DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, } from "@/shared/libs/shadcn/ui/dialog"; import { Input } from "@/shared/libs/shadcn/ui/input"; import { Label } from "@/shared/libs/shadcn/ui/label"; import { Separator } from "@/shared/libs/shadcn/ui/separator"; import { useEffect, useState } from "react"; import { getAllThirdPartyAuth, GetALlThirdPartyAuthCallback, } from "../actions/getAllThirdPartyAuth"; import { Icon } from "@iconify/react"; const SignInCard = () => { const [oAuthProviders, setOAuthProviders] = useState(null); useEffect(() => { (async () => { const res = await getAllThirdPartyAuth(); console.log(res); setOAuthProviders(res); })(); }, []); return ( Get Started Sign in to access personalized features and stay updated with the latest content.

or continue with

{oAuthProviders ? (
{oAuthProviders.data?.map((provider, index) => ( ))}
) : ( )}
); }; export default SignInCard;