completionId: cgen-900ca33e56fc4897a91d76b896949814
cgen-900ca33e56fc4897a91d76b896949814
This commit is contained in:
parent
1566a83bc4
commit
fa2cee3a91
1 changed files with 24 additions and 0 deletions
|
|
@ -121,6 +121,30 @@ const ARMS = [
|
|||
},
|
||||
];
|
||||
|
||||
const OAUTH_PROVIDERS: readonly ProviderDescriptor[] = [
|
||||
{
|
||||
provider: "github",
|
||||
name: "GitHub",
|
||||
description: "Connect your GitHub account for project collaboration",
|
||||
Icon: Github,
|
||||
gradient: "from-gray-700 to-black",
|
||||
},
|
||||
{
|
||||
provider: "google",
|
||||
name: "Google",
|
||||
description: "Sign in with your Google account",
|
||||
Icon: Mail,
|
||||
gradient: "from-red-500 to-orange-500",
|
||||
},
|
||||
{
|
||||
provider: "discord",
|
||||
name: "Discord",
|
||||
description: "Link your Discord account for community chat",
|
||||
Icon: MessageCircle,
|
||||
gradient: "from-indigo-500 to-purple-600",
|
||||
},
|
||||
];
|
||||
|
||||
export default function Dashboard() {
|
||||
const navigate = useNavigate();
|
||||
const {
|
||||
|
|
|
|||
Loading…
Reference in a new issue