Welcome to my portfolio
Igor Silva
, aI'm excited to share my journey with you. Here, you'll find a collection of projects that I'm passionate about and proud of.
Currently, I'm learning Python and building an online banking web app.
Last updated: October 4, 2024Transform your shopping experience with Online Shop, built using Next.js and React for seamless performance. Enjoy user-friendly features like secure authentication, dynamic product browsing, and a responsive design with dark and light modes. Benefit from smooth checkout processes via Stripe and gain insights into your purchases through an intuitive dashboard. Explore now and watch as we continuously enhance the platform with new features and improvements!
SoCBrain is an innovative learning platform designed to enhance learning and performance tracking for coding students. It offers personalized quizzes, instant feedback, gamification, and progress tracking for students, while providing coaches with analytical tools and a unified dashboard for monitoring progress and many more. It integrates seamlessly with an AI assistant for an engaging and adaptive learning journey.
Streamline your travel with our Car Rental App, crafted with React and Next.js for reliable performance. Access real-time availability, secure login, and a responsive mobile design. Upcoming features like payment integration and UI/UX improvements will enhance your experience even further. Start your adventure now and stay tuned for more updates!
This project is your gateway to comprehensive country data, seamlessly integrating with the REST Countries API. With a user-friendly interface optimized for both desktop and mobile devices, you can effortlessly explore detailed information about individual countries, including their bordering nations. Whether yor're seeking geographical insights or cultural nuances, this project simplifies your journey into global exploration, anytime, anywhere.
Experience the thrill of Blackjack and R.P.S. with this dynamic web development project. Enhanced maintainability and scalability with React/Next.js promise a smoother gaming experience. Track your progress, navigate seamlessly, and anticipate visual enhancements as we elevate your gaming journey. Explore now and stay tuned for updates!
My career has always been driven by a deep love for technology and a knack for solving problems, which have both played a huge role in shaping who I am professionally.
I previously worked as a customer representative for Google, where I developed essential skills in problem-solving, collaboration, and communication. However, my fascination with technology began much earlier. From a young age, I was captivated by computers, starting with my first one at age 10. By 15, I was already building game servers and creating websites for friends, showcasing my early dedication to the tech world.
Motivated by this passion, I transitioned from customer service to a technology-focused career. I enrolled in an intensive coding bootcamp at the School of Code, where I formalized my expertise in full-stack development, Agile methodologies, and version control. This experience reinforced my commitment to a career in software development and fueled my enthusiasm for contributing to technological advancements.
Beyond my professional life, I enjoy engaging in DIY projects, particularly those involving cars. I have a knack for researching and solving computer issues, and I find great satisfaction in building and fixing systems. My love for technology extends beyond the screen, into any project where I can apply my technical skills.
import { FC } from "react";
type List = {
wish:
"job opportunities" |
"learning resources"|
"challenging tasks";
};
const MyWishlist: FC<List> = ({ wish }) => (
<>
<h2>Igor's Wishlist</h2>
<p>Wishes: {wish}</p>
</>
);
export default MyWishlist;