-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
156 additions
and
48 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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
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,51 @@ | ||
'use client'; | ||
|
||
import 'react-vertical-timeline-component/style.min.css'; | ||
|
||
import React from 'react'; | ||
import { | ||
VerticalTimeline, | ||
VerticalTimelineElement, | ||
} from 'react-vertical-timeline-component'; | ||
|
||
import { Icons } from '@/components/icons'; | ||
import { SectionHeading } from '@/components/section-heading'; | ||
import { experiencesData } from '@/lib/data'; | ||
|
||
export const Experience = () => { | ||
return ( | ||
<section className="my-8 sm:my-10"> | ||
<SectionHeading | ||
heading="My Experience" | ||
content="Projects I worked on. Due to nature of internet businesses not all of them are still online." | ||
/> | ||
<VerticalTimeline lineColor="hsl(var(--muted))"> | ||
{experiencesData.map(({ title, description, location, date }) => ( | ||
<VerticalTimelineElement | ||
key={title} | ||
visible | ||
contentStyle={{ | ||
background: 'hsl(var(--secondary))', | ||
boxShadow: 'none', | ||
padding: '20px', | ||
}} | ||
contentArrowStyle={{ display: 'none' }} | ||
date={date} | ||
dateClassName="!font-medium text-muted-foreground" | ||
icon={<Icons.briefcase />} | ||
iconStyle={{ | ||
boxShadow: 'none', | ||
border: '2px solid hsl(var(--foreground)', | ||
}} | ||
> | ||
<h3 className="font-medium">{title}</h3> | ||
<p className="!mt-0 !font-normal">{location}</p> | ||
<p className="text-muted-foreground !mt-1 !font-normal"> | ||
{description} | ||
</p> | ||
</VerticalTimelineElement> | ||
))} | ||
</VerticalTimeline> | ||
</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
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
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,56 @@ | ||
export const projectsData = [ | ||
{ | ||
image: '/project-image.jpg', | ||
title: 'Audiophile', | ||
description: | ||
'Browser extension that records everything happening in application.', | ||
technologies: ['Next.js', 'TypeScript', 'Tailwind', 'Zod', 'Supabase'], | ||
links: { preview: 'https://github.com/', github: 'https://github.com/' }, | ||
}, | ||
{ | ||
image: '/project-image.jpg', | ||
title: 'Monito', | ||
description: | ||
'Browser extension that records everything happening in application.', | ||
technologies: [ | ||
'React', | ||
'Styled-components', | ||
'TypeScript', | ||
'Yup', | ||
'Firebase', | ||
], | ||
links: { preview: 'https://github.com/', github: 'https://github.com/' }, | ||
}, | ||
{ | ||
image: '/project-image.jpg', | ||
title: 'SocialHub', | ||
description: | ||
'Browser extension that records everything happening in application.', | ||
technologies: ['Next.js', 'TypeScript', 'Tailwind', 'Zod', 'Supabase'], | ||
links: { preview: 'https://github.com/', github: 'https://github.com/' }, | ||
}, | ||
] as const; | ||
|
||
export const experiencesData = [ | ||
{ | ||
title: 'Graduated bootcamp', | ||
location: 'Miami, FL', | ||
description: | ||
'I graduated after 6 months of studying. I immediately found a job as a front-end developer.', | ||
date: '2019', | ||
}, | ||
{ | ||
title: 'Front-End Developer', | ||
location: 'Orlando, FL', | ||
description: | ||
'I worked as a front-end developer for 2 years in 1 job and 1 year in another job. I also upskilled to the full stack.', | ||
date: '2019 - 2021', | ||
}, | ||
{ | ||
title: 'Full-Stack Developer', | ||
location: 'Houston, TX', | ||
description: | ||
"I'm now a full-stack developer working as a freelancer. My stack includes React, Next.js, TypeScript, Tailwind, Prisma and MongoDB. I'm open to full-time opportunities.", | ||
date: '2021 - present', | ||
}, | ||
] as const; |
File renamed without changes.