terminal
➜~/portfolio$
$
Starting up...
Hello World. I am
Bruno Caceres
>
// find my profile on GitHub:
const githubLink = "https://github.com/BCaceress";
>About-me
Full Stack Developer | Passionate about learning and creating solutions:
</>
aboutMe.js
JavaScript
const aboutMe = {
name: "Bruno Caceres",
profession: "Full Stack Developer",
skills: ["React", "Next.js", "Tailwind", "TypeScript"],
experience: "7+ years",
};
Hey there! I'm a full-stack developer with over 7 years of experience, and for the past 2 years, I’ve been diving into the mobile world with React Native. My journey in tech started back in 2010 when I took a technical IT course and got my first opportunity in the industry. Since then, I haven’t stopped! I earned my degree in Internet Systems from Feevale University, and now I'm in the 4th module of my Full Stack post-graduate program, always looking to grow and take on new challenges. I’m passionate about technology and love building innovative solutions that make a difference. Recently, I started learning English, which has been an exciting experience! I see it as an essential step to expanding my career even further. But life isn’t just about coding, right? In my free time, I enjoy traveling, playing sports, gaming, and, of course, spending quality time with my family and my dog.
</>
>Skills
The skills, tools, and technologies I am really good at:
JavaScript
TypeScript
React
Next.js
Vue.js
Nuxt.js
ReactNative
Bootstrap
Tailwind
Sass
Figma
Node.js
Laravel
PostgreSQL
MySQL
Git
>Projects
A Showcase of Creativity, Problem-Solving, and Technical Excellence!
> Contact-me
What's next? Feel free to reach out if you're looking for a developer, have a query, or simply want to connect.
📄message.js
1const developerContact = {2client: {3name: "Your Name",4email: "you@example.com",5timestamp: 2025-03-21T20:46:26.799Z6}, 7message: {8content: "Your message...",9} 10};1112async function sendMessage() {13try {14console.log("Sending message...");15const response = await fetch("/api/contact", {16method: "POST",17body: JSON.stringify(developerContact)18});19return await response.json();20} catch (error) {21console.error("Error:", error);22}23}