diff --git a/src/pages/profile/index.tsx b/src/pages/profile/index.tsx index 23963e6..c1c4f84 100644 --- a/src/pages/profile/index.tsx +++ b/src/pages/profile/index.tsx @@ -8,7 +8,8 @@ import { api } from "~/utils/api"; import { signIn, useSession } from "next-auth/react"; import { useRouter } from "next/router"; import { useEffect, useState } from "react"; -import { FaGithub, FaGoogle } from "react-icons/fa"; +import { SiGoogle, SiGithub } from "react-icons/si"; +import { FaShieldAlt } from "react-icons/fa"; export const getServerSideProps: GetServerSideProps = async (ctx) => { const session = await getServerAuthSession(ctx); @@ -115,14 +116,21 @@ const ProfileBody: React.FC = () => {

Profile:

{sessionData.user.image && ( - Profile picture. +
+ +
+ +
+
+ Profile picture. +
)} {providersLoading ? ( @@ -136,7 +144,7 @@ const ProfileBody: React.FC = () => { disabled={providers?.includes("github")} onClick={() => void signIn("github")} > - +
)}