-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove payload and make the pages static
- Loading branch information
Showing
62 changed files
with
180 additions
and
876 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
// @components | ||
import { ExperienceTimeline } from "@/components"; | ||
|
||
const experiences = [ | ||
{ | ||
companyLogo: "/reach.png", | ||
companyWebsite: "https://www.getreach.xyz/", | ||
date: "2024 - 2024", | ||
role: "Senior Frontend Engineer", | ||
description: | ||
"Developing a high-performance frontend architecture for Reach web application, ensuring a scalable and flexible codebase, high-quality user interface and seamless user experience across devices.", | ||
}, | ||
{ | ||
companyLogo: "/mintra.png", | ||
companyWebsite: "https://www.mintra.ai/", | ||
date: "2022 - 2024", | ||
role: "Senior Frontend Engineer", | ||
description: | ||
"Led the design and development of scalable, high-performance, feature rich frontend architectures for a NFT marketplace, ensuring the best user interface and user experience for the end users.", | ||
}, | ||
{ | ||
companyLogo: "/creative-tim.png", | ||
companyWebsite: "https://www.creative-tim.com/", | ||
date: "2020 - 2022", | ||
role: "Web Developer & Community Manager", | ||
description: | ||
"Built high quality and responsive templates, ui kits, dashboard, building blocks, open-source component library for react.js and managed developers community.", | ||
}, | ||
]; | ||
|
||
export function Experience() { | ||
return ( | ||
<section className="p-8 sm:p-10 lg:p-20"> | ||
<div className="max-w-2xl mx-auto"> | ||
<h2 className="text-xl md:text-2xl text-black font-medium mb-10"> | ||
My Experiences | ||
</h2> | ||
<div className="space-y-14"> | ||
{experiences.map( | ||
( | ||
{ role, date, description, companyWebsite, companyLogo }: any, | ||
key | ||
) => ( | ||
<ExperienceTimeline | ||
key={key} | ||
role={role} | ||
date={date} | ||
description={description} | ||
companyLogo={`/media/${companyLogo?.filename}`} | ||
companyWebsite={companyWebsite} | ||
/> | ||
) | ||
)} | ||
</div> | ||
</div> | ||
</section> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.