Skip to content

Commit

Permalink
feat: added industry info
Browse files Browse the repository at this point in the history
  • Loading branch information
swernerx committed Jul 30, 2024
1 parent b55b794 commit be2c34d
Show file tree
Hide file tree
Showing 4 changed files with 96 additions and 48 deletions.
6 changes: 6 additions & 0 deletions app/components/profile/project-list/ProjectList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,17 @@ export function Project({ data }: ProjectProps) {
{data.customer.name}
<br />
{data.customer.location}
<br />
{data.customer.industry}
</p>
<p className={period}>
Zeitraum:
<br /> {formatPeriod(data.period)}
</p>
<p className={period}>
Auftraggeber:
<br /> {data.contractor}
</p>

{data.technologies && (
<Neutral>
Expand Down
1 change: 1 addition & 0 deletions app/data/data.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export interface ProjectType {
customer: {
name: string
location: string
industry: string
logo?: string
}

Expand Down
48 changes: 32 additions & 16 deletions app/data/fastner.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"customer": {
"name": "MorgenFund GmbH",
"location": "Luxemburg",
"logo": "morgenfund"
"logo": "morgenfund",
"industry": "Fintech"
},
"contractor": "Hays Sarl",
"period": {
Expand All @@ -25,7 +26,8 @@
"customer": {
"name": "Witt Gruppe",
"location": "Weiden",
"logo": "wittGruppe"
"logo": "wittGruppe",
"industry": "E-Commerce"
},
"contractor": "Computer Futures / SThree GmbH",
"period": {
Expand Down Expand Up @@ -62,7 +64,8 @@
"customer": {
"name": "DWS",
"location": "Frankfurt am Main",
"logo": "dws"
"logo": "dws",
"industry": "Banking"
},
"contractor": "Questax GmbH",
"period": {
Expand All @@ -81,7 +84,8 @@
"customer": {
"name": "Deutsche Telekom AG",
"location": "Darmstadt",
"logo": "deutscheTelekom"
"logo": "deutscheTelekom",
"industry": "Telekommunikation"
},
"contractor": "Proventa, Frankfurt",
"period": {
Expand All @@ -104,7 +108,8 @@
"customer": {
"name": "JAKO-O",
"location": "Bad Rodach",
"logo": "jakoo"
"logo": "jakoo",
"industry": "Einzelhandel"
},
"contractor": "Epresia GmbH",
"period": {
Expand All @@ -123,7 +128,8 @@
"customer": {
"name": "JAKO-O",
"location": "Bad Rodach",
"logo": "jakoo"
"logo": "jakoo",
"industry": "Einzelhandel"
},
"contractor": "Epresia GmbH",
"period": {
Expand All @@ -142,7 +148,8 @@
"customer": {
"name": "SUZUKI",
"location": "Bensheim",
"logo": "suzuki"
"logo": "suzuki",
"industry": "Automobil"
},
"contractor": "DIU MarTech Solutions GmbH",
"period": {
Expand All @@ -159,7 +166,8 @@
"role": "Frontend-Entwickler",
"customer": {
"name": "Großbank",
"location": "Frankfurt am Main"
"location": "Frankfurt am Main",
"industry": "Banking"
},
"contractor": "arago Consulting GmbH",
"period": {
Expand All @@ -177,7 +185,8 @@
"customer": {
"name": "Deutsche Telekom AG",
"location": "Darmstadt",
"logo": "deutscheTelekom"
"logo": "deutscheTelekom",
"industry": "Telekommunikation"
},
"contractor": "axxessio GmbH",
"period": {
Expand All @@ -203,7 +212,8 @@
"customer": {
"name": "Deutsche Telekom AG",
"location": "Darmstadt",
"logo": "deutscheTelekom"
"logo": "deutscheTelekom",
"industry": "Telekommunikation"
},
"contractor": "Proventa AG",
"period": {
Expand All @@ -222,7 +232,8 @@
"customer": {
"name": "Deutsche Telekom AG",
"location": "Darmstadt",
"logo": "deutscheTelekom"
"logo": "deutscheTelekom",
"industry": "Telekommunikation"
},
"period": {
"start": "2008-05",
Expand All @@ -245,7 +256,8 @@
"role": "Java-Entwickler",
"customer": {
"name": "3ado OHG",
"location": "Mainz"
"location": "Mainz",
"industry": "IT-Dienstleistungen"
},
"period": {
"start": "2007-05",
Expand All @@ -268,7 +280,8 @@
"customer": {
"name": "Netz98 GmbH",
"location": "Mainz",
"logo": "netz98"
"logo": "netz98",
"industry": "E-Commerce"
},
"period": {
"start": "2006-10",
Expand All @@ -292,7 +305,8 @@
"customer": {
"name": "Commerzbank AG",
"location": "Frankfurt am Main",
"logo": "commerzbank"
"logo": "commerzbank",
"industry": "Banking"
},
"period": {
"start": "2006-03",
Expand All @@ -308,7 +322,8 @@
"role": "PHP-Entwickler",
"customer": {
"name": "Creative Communication Gbr",
"location": "Bingen"
"location": "Bingen",
"industry": "Marketing"
},
"period": {
"start": "2006-03",
Expand All @@ -325,7 +340,8 @@
"customer": {
"name": "Boehringer Ingelheim International GmbH",
"location": "Ingelheim am Rhein",
"logo": "boehringerIngelheim"
"logo": "boehringerIngelheim",
"industry": "Pharma"
},
"period": {
"start": "2000",
Expand Down
Loading

0 comments on commit be2c34d

Please sign in to comment.