diff --git a/src/assets/images/image-alves-profile.png b/src/assets/images/image-alves-profile.png new file mode 100644 index 0000000..82b9800 Binary files /dev/null and b/src/assets/images/image-alves-profile.png differ diff --git a/src/assets/images/image-daniel-profile.png b/src/assets/images/image-daniel-profile.png new file mode 100644 index 0000000..2fe5ada Binary files /dev/null and b/src/assets/images/image-daniel-profile.png differ diff --git a/src/assets/images/image-joao-profile.png b/src/assets/images/image-joao-profile.png new file mode 100644 index 0000000..c5ae79c Binary files /dev/null and b/src/assets/images/image-joao-profile.png differ diff --git a/src/assets/images/image-monique-profile.png b/src/assets/images/image-monique-profile.png new file mode 100644 index 0000000..fd4ba9c Binary files /dev/null and b/src/assets/images/image-monique-profile.png differ diff --git a/src/components/cardknowledger/mockKnowledgers.ts b/src/components/cardknowledger/mockKnowledgers.ts index 38f5458..fd82661 100644 --- a/src/components/cardknowledger/mockKnowledgers.ts +++ b/src/components/cardknowledger/mockKnowledgers.ts @@ -5,6 +5,10 @@ import knowledgerJoao from "../../assets/images/knowledgers/joao.png"; import knowledgerDaniel from "../../assets/images/knowledgers/daniel.png"; import LeonardoProfileImage from "../../assets/images/leonardo-profile-image.png"; +import AlvesProfileImage from "../../assets/images/image-alves-profile.png"; +import MoniqueProfileImage from "../../assets/images/image-monique-profile.png"; +import JoaoProfileImage from "../../assets/images/image-monique-profile.png"; +import DanielProfileImage from "../../assets/images/image-daniel-profile.png"; import { GithubLogo, InstagramLogo, LinkedinLogo } from "@phosphor-icons/react"; @@ -13,6 +17,7 @@ export const mockKnowledgers = [ id: 3, name: "Monique Campos", image: knowledgerMonique, + imageProfile: MoniqueProfileImage, flag: "alagoas", social: [ { icon: GithubLogo, url: "" }, @@ -38,11 +43,12 @@ export const mockKnowledgers = [ id: 7, name: "Alves Jhonata", image: knowledgerAlves, + imageProfile: AlvesProfileImage, flag: "para", social: [ - { icon: GithubLogo, url: "" }, - { icon: InstagramLogo, url: "" }, - { icon: LinkedinLogo, url: "" }, + { icon: GithubLogo, url: "https://github.com/4llves" }, + { icon: InstagramLogo, url: "https://www.instagram.com/4llves_/" }, + { icon: LinkedinLogo, url: "https://www.linkedin.com/in/4llves/" }, ], }, @@ -50,6 +56,7 @@ export const mockKnowledgers = [ id: 8, name: "João Jacinto", image: knowledgerJoao, + imageProfile: JoaoProfileImage, flag: "alagoas", social: [ { icon: GithubLogo, url: "" }, @@ -62,6 +69,7 @@ export const mockKnowledgers = [ id: 9, name: "Daniel Duarte", image: knowledgerDaniel, + imageProfile: DanielProfileImage, flag: "alagoas", social: [ { icon: InstagramLogo, url: "" }, diff --git a/src/pages/Profile.tsx b/src/pages/Profile.tsx index 7ebcdfb..dcf9857 100644 --- a/src/pages/Profile.tsx +++ b/src/pages/Profile.tsx @@ -71,7 +71,11 @@ export function Profile() {