Skip to content

Commit

Permalink
Homepage has improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitardanailov committed Nov 19, 2023
1 parent 2131933 commit 2241472
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 12 deletions.
2 changes: 1 addition & 1 deletion apps/website/src/app/(home)/components/Accomplishments.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {listStyle} from './shared'
const Accomplishments = () => {
return (
<>
<div>Accomplishments</div>
<div className="font-bold">Accomplishments</div>
<ul className={listStyle}>
<li>
13+ years experience. My portfolio includes clients located: USA,
Expand Down
60 changes: 51 additions & 9 deletions apps/website/src/app/(home)/components/Experience.tsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,32 @@
'use client'

import TargetBlankLink from '@/components/TargetBlankLink'
import {listStyle} from './shared'

const Experience = () => {
const conttainerClassName = 'mx-2'

const Contractor = () => {
return (
<>
<div>Experience</div>
<div className={conttainerClassName}>
<section>Remote B2B Contractor (2018 - present)</section>
<ul className={listStyle}>
<li>Contractor, Collinson group: August - present (Team size: 20+)</li>
<li>
Blockchain Architect, Siemens Energy: March - June (2023) (Team size:
15+);
Full Stack Engineer,{' '}
<TargetBlankLink
title="Full Stack Engineer"
text="Collinson group"
href="https://www.collinsongroup.com/"
/>
: August - present (Team size: 20+)
</li>
<li>
Blockchain Architect,{' '}
<TargetBlankLink
text="Siemens Energy"
title="Blockchain Architect"
href="https://www.siemens-energy.com/global/en/home.html"
/>
: March - June (2023) (Team size: 15+);
</li>
<li>
Fullstack JS DevOps Architect, The international red cross: 2022 -
Expand All @@ -24,13 +40,39 @@ const Experience = () => {
Software Engineering Manager, Elephant stocks: Sep, 2021 - 2022; (Team
size: 20+);
</li>
</ul>
</div>
)
}

const OnSite = () => {
return (
<div className={conttainerClassName}>
<section>On site employment: 2010 - 2018</section>
<ul className={listStyle}>
<li>Technical Architect, LiveArea: 2018 - 2019; (Team size: 10+);</li>
<li>
Full Stack Software Architect, Mentormate: 2015 - 2020; (Team size:
Full Stack Software Architect, Mentormate: 2015 - 2018; (Team size:
100+);
</li>
<li>CTO, Woollow Soft: 2014 - 2015; (Team size: 30+);</li>
<li>Developer and Team Leader: 2010 - 2014; (Team size: 20+);</li>
<li>
Wollow Soft:
<ul className={listStyle}>
<li>CTO, Woollow Soft: 2014 - 2015; (Team size: 30+);</li>
<li>Developer and Team Leader: 2010 - 2014; (Team size: 20+);</li>
</ul>
</li>
</ul>
</div>
)
}

const Experience = () => {
return (
<>
<div className="font-bold">Experience</div>
<Contractor />
<OnSite />
</>
)
}
Expand Down
4 changes: 2 additions & 2 deletions apps/website/src/app/(home)/components/Skills.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ import {listStyle} from './shared'
const Skills: FC = () => {
return (
<>
<div>Skills</div>
<div className="font-bold">Skills</div>
<ul className={listStyle}>
<li>Nodejs: Express, Hapi, Nestsjs, etherjs, web3js</li>
<li>Nextjs, Vercel, Redux, GraphQL;</li>
<li>AWS, Azure, Google Cloud;</li>
<li>
Blockchain: Solidity, Etherium, Algorane, Cosmos, Elrond, Polygon;
Blockchain: Solidity, Etherium, Algorand, Cosmos, Elrond, Polygon;
</li>
<li>
Database Systems: PostgreSQL, MySQL, MSSQL, NoSQL, MongoDB,
Expand Down

1 comment on commit 2241472

@vercel
Copy link

@vercel vercel bot commented on 2241472 Nov 19, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

portfolio-website – ./apps/website

portfolio-website-git-main-dimityrdanailov.vercel.app
portfolio-website-dimityrdanailov.vercel.app
ddanailov.dev

Please sign in to comment.