Skip to content

Commit

Permalink
Merge pull request #2 from densalzmann/add/upi_project
Browse files Browse the repository at this point in the history
upd: add project description & change the components html
  • Loading branch information
densalzmann authored Aug 25, 2024
2 parents 0241d5b + 4b1f901 commit 4848432
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/app/portfolio/projects/projects.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
}

.project-title {
white-space: nowrap;
white-space: wrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 20ch;
Expand Down
6 changes: 3 additions & 3 deletions src/app/portfolio/projects/projects.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ <h1 [ngClass]="options.titleClasses" class="mb-5"><span class="font-weight-bold"
<div *ngFor="let project of projects" class="card project-card m-3"
[ngClass]="{'m-3': !options.displayInColumn, 'mb-3': options.displayInColumn}">
<div class="card-body d-flex flex-column">
<h5 class="card-title font-weight-bold text-left project-title" [title]="project.name">
<h5 class="card-title font-weight-bold text-left project-title" [title]="project.name">
{{project.name}}
</h5>
<h6 class="card-subtitle mb-2 font-weight-lighter text-left">
Expand All @@ -17,10 +17,10 @@ <h6 class="card-subtitle mb-2 font-weight-lighter text-left">
<p class="card-text text-left">
{{project.description}}
</p>
<div class="d-flex flex-row justify-content-start">
<div class="d-flex flex-row justify-content-between mt-auto">
<a [href]="project.previewUrl" *ngIf="project.previewUrl" class="btn btn-dark mr-2">
<i class="fa-lg mr-1 far fa-eye"></i>
Preview
Pre-story
</a>
<a [href]="project.sourceUrl" *ngIf="project.sourceUrl" class="btn btn-dark">
<i class="fa-lg mr-1 fab fa-github-alt"></i>
Expand Down
15 changes: 13 additions & 2 deletions src/assets/json/projects.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
[
{
"name": "Unified Package \n Inspector (UPI)",
"stack": {
"name": "Linux / C++",
"iconClasses": "fab fa-brands fa-linux"
},
"description": "Command-line tool to scan and analyze installed packages across multiple package managers.",
"sourceUrl": "https://github.com/densalzmann/universal-package-inspector",
"previewUrl": "https://burly-gray-9a3.notion.site/The-Modern-Developer-s-Dilemma-Navigating-the-Maze-of-Package-Management-7f0bd6a10c18432ca1bf8fcd2879b21c",
"featured": true
},
{
"name": "Blockchain Check-in App",
"stack": {
Expand All @@ -8,7 +19,7 @@
"description": "This application offers an integrated solution comprising an Android Scanner App, Blockchain API Server, and Dashboard.",
"sourceUrl": "https://github.com/mario-ruoff/hackathon-2022",
"previewUrl": "https://github.com/mario-ruoff/hackathon-2022",
"featured": true
"featured": false
},
{
"name": "J.A.R.V.I.L.",
Expand Down Expand Up @@ -36,7 +47,7 @@
"name": "Test App for a research assistant",
"stack": {
"name": "Python / Docker",
"iconClasses": "fab fa-location-dot"
"iconClasses": "fas fa-map-marker"
},
"description": "A simple data generator mocking a GPGGA data source. The datasource is then proccessed to an kafka-server.",
"sourceUrl": "https://github.com/densalzmann/hiwi-test",
Expand Down

0 comments on commit 4848432

Please sign in to comment.