|
2 | 2 |
|
3 | 3 | import { Navbar } from '../components/Navbar'; |
4 | 4 | import Image from 'next/image'; |
5 | | -import { FaLinkedin, FaGithub, FaMedium, FaEnvelope, FaGlobe } from 'react-icons/fa'; |
| 5 | +import { FaLinkedin, FaGithub, FaMedium, FaEnvelope, FaInstagram } from 'react-icons/fa'; |
6 | 6 |
|
7 | 7 | export default function About() { |
8 | 8 | const experiences = [ |
@@ -54,10 +54,9 @@ export default function About() { |
54 | 54 | ]; |
55 | 55 |
|
56 | 56 | const contacts = [ |
57 | | - { name: "Website", url: "https://helpdev.com.br", icon: <FaGlobe className="text-2xl" /> }, |
58 | | - { name: "LinkedIn", url: "https://www.linkedin.com/in/gbzarelli/", icon: <FaLinkedin className="text-2xl" /> }, |
59 | 57 | { name: "GitHub", url: "https://github.com/gbzarelli", icon: <FaGithub className="text-2xl" /> }, |
60 | 58 | { name: "Medium", url: "https://medium.com/@guilherme.zarelli", icon: <FaMedium className="text-2xl" /> }, |
| 59 | + { name: "Instagram", url: "https://www.instagram.com/_helpdev/", icon: <FaInstagram className="text-2xl" /> }, |
61 | 60 | { name: "Email", url: "mailto:gbzarelli@helpdev.com.br", icon: <FaEnvelope className="text-2xl" /> } |
62 | 61 | ]; |
63 | 62 |
|
@@ -96,12 +95,23 @@ export default function About() { |
96 | 95 | ))} |
97 | 96 | </div> |
98 | 97 | </div> |
99 | | - <p className="text-lg text-gray-600 leading-relaxed"> |
| 98 | + <p className="mt-4 text-gray-600"> |
100 | 99 | Engenheiro de Software com mais de 10 anos de experiência em desenvolvimento e arquitetura de sistemas. |
101 | 100 | Especialista em soluções escaláveis para empresas de grande porte, com foco em arquitetura de software, |
102 | 101 | cloud computing e desenvolvimento de aplicações mobile. Comprometido com o compartilhamento de conhecimento |
103 | 102 | através de artigos técnicos, palestras e mentoria de desenvolvedores. |
104 | 103 | </p> |
| 104 | + <div className="mt-4"> |
| 105 | + <a |
| 106 | + href="https://www.linkedin.com/in/gbzarelli/" |
| 107 | + target="_blank" |
| 108 | + rel="noopener noreferrer" |
| 109 | + className="inline-flex items-center text-blue-600 hover:text-blue-800 transition-colors" |
| 110 | + > |
| 111 | + <FaLinkedin className="mr-2" /> |
| 112 | + Ver perfil completo no LinkedIn |
| 113 | + </a> |
| 114 | + </div> |
105 | 115 | </div> |
106 | 116 | </div> |
107 | 117 | </div> |
|
0 commit comments