From 5ae003be7936724d5741f20e657879f310f58184 Mon Sep 17 00:00:00 2001 From: farhan rafid syauqi Date: Sat, 26 Aug 2023 03:26:19 +0700 Subject: [PATCH] feat: add journey section --- src/components/modules/profile/Journey.tsx | 60 ++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 src/components/modules/profile/Journey.tsx diff --git a/src/components/modules/profile/Journey.tsx b/src/components/modules/profile/Journey.tsx new file mode 100644 index 0000000..7504dc9 --- /dev/null +++ b/src/components/modules/profile/Journey.tsx @@ -0,0 +1,60 @@ +import Image from 'next/image'; +import React from 'react'; + +const Journey = () => { + return ( +
+
+
+

My Journey

+
+

+ Not long ago, I jumped into coding with a 6-month bootcamp on fullstack development + using Node.js and React. Those months were a whirlwind of learning HTML, CSS, and + JavaScript, and I loved every challenge. +

+

+ But let me tell you the highlight: the final project. It was a chance to show off all + that I had learned. With the guidance of mentors and my bootcamp buddies, I crafted a + web application that I was truly proud of. When I hit that submit button, it was like + sending my dreams into the digital universe. +

+

+ After bootcamp, I landed a cool job as a Fullstack Developer. I worked on exciting + projects using Next.js, TypeScript, and even delved into GoLang and gRPC + microservices. It felt like a coding adventure. +

+

+ {`As the bootcamp chapter came to a close,I landed an incredible job as a Fullstack Developer. My role + involved working on projects using Next.js and TypeScript. But that's + not where the story ends – I also dived into the exciting universe of GoLang and gRPC + microservices. It felt like leveling up in a video game!`} +

+

+ {` As I sat there, coding away on my computer, I couldn't help but feel proud of how far + I'd come. From a bootcamp student to a full-fledged Fullstack Developer, I was living + my coding dream. And the best part? The adventure was just beginning – there were more + languages to learn, more projects to create, and a whole world of coding magic waiting + to be explored.`} +

+
+
+ +
+
+ good ya +
+
+
+
+ ); +}; + +export default Journey;