Skip to content

Commit e839f38

Browse files
author
root
committed
feat: add specialized developer mentorship service and rename team training
- Add 'Mentoria Especializada para Desenvolvedor' as new service with FaUserGraduate icon - Rename 'Mentoria & Treinamentos' to 'Treinamentos Corporativos' for better differentiation - Update both homepage and services page for consistency - Individual mentorship focuses on 1:1 technical guidance and career development - Corporate training focuses on team workshops and company-wide capacity building
1 parent 15565f2 commit e839f38

2 files changed

Lines changed: 11 additions & 5 deletions

File tree

src/app/page.tsx

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { BlogCard } from './components/BlogCard';
99
import { ProjectCard } from './components/ProjectCard';
1010
import {
1111
FaGithub, FaMedium, FaEnvelope, FaInstagram, FaArrowRight,
12-
FaBriefcase, FaCode, FaCloud, FaRocket, FaShieldAlt, FaChalkboardTeacher
12+
FaBriefcase, FaCode, FaCloud, FaRocket, FaShieldAlt, FaChalkboardTeacher, FaUserGraduate
1313
} from 'react-icons/fa';
1414
import { featuredArticles, featuredProjects, featuredBlogPosts, contacts, quickLinks } from '@/data/content';
1515
import { ContactForm } from './components/ContactForm';
@@ -57,8 +57,13 @@ export default function Home() {
5757
},
5858
{
5959
icon: <FaChalkboardTeacher className="text-blue-600 text-3xl" />,
60-
title: 'Mentoria & Treinamentos',
61-
desc: 'Workshops e capacitação sob medida para seu time.'
60+
title: 'Treinamentos Corporativos',
61+
desc: 'Workshops e capacitação sob medida para seu time e empresa.'
62+
},
63+
{
64+
icon: <FaUserGraduate className="text-blue-600 text-3xl" />,
65+
title: 'Mentoria Especializada para Desenvolvedor',
66+
desc: 'Orientação 1:1 personalizada para evolução técnica, carreira e boas práticas de desenvolvimento.'
6267
}
6368
] as const;
6469

src/app/services/page.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import Link from 'next/link';
2-
import { FaBriefcase, FaCode, FaCloud, FaShieldAlt, FaRocket, FaChalkboardTeacher, FaArrowRight } from 'react-icons/fa';
2+
import { FaBriefcase, FaCode, FaCloud, FaShieldAlt, FaRocket, FaChalkboardTeacher, FaUserGraduate, FaArrowRight } from 'react-icons/fa';
33
import { Navbar } from '../components/Navbar';
44
import { ContactForm } from '../components/ContactForm';
55

@@ -13,7 +13,8 @@ export default function ServicesPage() {
1313
{ icon: <FaCloud className="text-blue-600 text-3xl" />, title: 'Cloud & DevOps', desc: 'Infra como código, pipelines, observabilidade e custos otimizados.' },
1414
{ icon: <FaShieldAlt className="text-blue-600 text-3xl" />, title: 'Qualidade & Segurança', desc: 'Revisão de código, testes, performance e práticas de segurança.' },
1515
{ icon: <FaRocket className="text-blue-600 text-3xl" />, title: 'Performance & Escala', desc: 'Perfis de desempenho, caching, filas e arquitetura orientada a eventos.' },
16-
{ icon: <FaChalkboardTeacher className="text-blue-600 text-3xl" />, title: 'Mentoria & Treinamentos', desc: 'Workshops e capacitação sob medida para seu time.' },
16+
{ icon: <FaChalkboardTeacher className="text-blue-600 text-3xl" />, title: 'Treinamentos Corporativos', desc: 'Workshops e capacitação sob medida para seu time e empresa.' },
17+
{ icon: <FaUserGraduate className="text-blue-600 text-3xl" />, title: 'Mentoria Especializada para Desenvolvedor', desc: 'Orientação 1:1 personalizada para evolução técnica, carreira e boas práticas de desenvolvimento.' },
1718
] as const;
1819

1920
const models = [

0 commit comments

Comments
 (0)