diff --git a/assets/2026-01-tfs/profile_photos/emma.JPG b/assets/2026-01-tfs/profile_photos/emma.JPG new file mode 100644 index 0000000..5e749aa Binary files /dev/null and b/assets/2026-01-tfs/profile_photos/emma.JPG differ diff --git a/bootcamps/software-development-tfs/2026-01/2026-01-tfs.json b/bootcamps/software-development-tfs/2026-01/2026-01-tfs.json index 8519b4a..4d51874 100644 --- a/bootcamps/software-development-tfs/2026-01/2026-01-tfs.json +++ b/bootcamps/software-development-tfs/2026-01/2026-01-tfs.json @@ -168,5 +168,22 @@ "Docker" ] } + + { + "name": "Emma", + "role": "Software Developer", + "github": "https://github.com/emmcostello", + "linkedin": "https://www.linkedin.com/in/ejacostello/", + "photo": "/assets/2026-01-tfs/profile_photos/emma.jpg", + "description": "I’m a front-end developer with a strong interest in human interaction and user experience. I started my career as a software tester, which gave me a solid foundation in quality and usability. I work with React, JavaScript, TypeScript and CSS to build engaging, user-focused applications.", + "portfolio_link": "https://github.com/emmcostello", + "technologies": [ + "React", + "JavaScript", + "TypeScript", + "HTML/CSS" + + ] + }, ] } diff --git a/css/alumni/2026-01-tfs.css b/css/alumni/2026-01-tfs.css index b6368df..69d8336 100644 --- a/css/alumni/2026-01-tfs.css +++ b/css/alumni/2026-01-tfs.css @@ -662,3 +662,37 @@ background: rgba(255, 255, 255, 0.75); box-shadow: 0 8px 18px rgba(76, 29, 149, 0.14); } + +.card--emma { + background: #8b16de; + background: radial-gradient( + circle, + rgb(22, 29, 222) 0%, + rgb(114, 16, 163) 50%, + rgba(143, 17, 189, 1) 100% + ); + + .card__name, + .card__role, + .card__link, + .card__description { + color: var(--color-white); + } + + .card__link-icon, + .card__icon { + fill: var(--color-white); + } +} + +.tech--emma { + color: #0f0f10; + background-color: var(--color-white); +} + +.tech--emma:hover { + transform: translateY(-2px); + background: rgba(255, 255, 255, 0.75); + box-shadow: 0 8px 18px rgba(76, 29, 149, 0.14); + color: var(--color-black); +}