terminal
~/portfolio$
$
QRSTUVWXYZ[ABCDEFGHIJZ[\]^_`ab
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:

Bruno Caceres
</>
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 logo

JavaScript

TypeScript logo

TypeScript

React logo

React

Next.js logo

Next.js

Vue.js logo

Vue.js

Nuxt.js logo

Nuxt.js

ReactNative logo

ReactNative

Bootstrap logo

Bootstrap

Tailwind logo

Tailwind

Sass logo

Sass

Figma logo

Figma

Node.js logo

Node.js

Laravel logo

Laravel

PostgreSQL logo

PostgreSQL

MySQL logo

MySQL

Git logo

Git

>Projects

A Showcase of Creativity, Problem-Solving, and Technical Excellence!

Imagem do projeto: Sistema de Suporte e Monitoramento

Sistema de Suporte e Monitoramento

Desenvolvido em 2019, este sistema foi criado para otimizar o trabalho da equipe de suporte da empresa, integrando APIs para cadastro de clientes, alertas críticos, repositório de documentos e vários dashboards de monitoramento em tempo real.

LaravelBootstrapMySQL
Imagem do projeto: Site Psicóloga

Site Psicóloga

Site profissional da psicóloga Simone Caceres, apresentando sua trajetória, abordagem terapêutica e local de atendimento. Conta com um blog com conteúdos sobre saúde mental.

ReactTypeScriptTailwind
Imagem do projeto: CLT400 - Gestão de Produção Industrial

CLT400 - Gestão de Produção Industrial

Sistema em desenvolvimento para otimizar o controle da produção industrial. Permite visualizar ordens de fabricação, registrar apontamentos de postos e processos.

React NativeJavaScript
Imagem do projeto: Portfolio Desenvolvedor

Portfolio Desenvolvedor

Website desenvolvido para mostrar projetos e habilidades técnicas. Inclui seções de apresentação, projetos, histórico profissional e formulário de contato.

NextJSTypeScriptTailwindCSS

> 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.

Send a Message

@
📄message.js
1const developerContact = {
2client: {
3name: "Your Name",
4email: "you@example.com",
5timestamp: 2025-03-21T20:46:26.799Z
6},
7message: {
8content: "Your message...",
9}
10};
11
12async 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}