diff --git a/widgets/login/loginCard/ContinueWithProviders.tsx b/widgets/login/loginCard/ContinueWithProviders.tsx index 6e9061c..d57b3c9 100644 --- a/widgets/login/loginCard/ContinueWithProviders.tsx +++ b/widgets/login/loginCard/ContinueWithProviders.tsx @@ -3,25 +3,40 @@ import { Icon } from "@iconify/react"; import React from "react"; const ContinueWithProviders = () => { + // set to true if there are other providers coming soon + const comingSoonProviders: boolean = true; + + // Provider for third-party auth + const oAuthProviders = [ + { + name: "Google", + icon: "logos:google-icon", + }, + { + name: "Discord", + icon: "logos:discord-icon", + }, + ]; + return (