Skip to content

Commit

Permalink
Merge pull request #3 from sebenns/update-phone
Browse files Browse the repository at this point in the history
Update phone
  • Loading branch information
sebenns authored Jan 10, 2024
2 parents 758d190 + 076db28 commit 1c6390d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 8 deletions.
1 change: 1 addition & 0 deletions .github/workflows/.gitkeep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

30 changes: 22 additions & 8 deletions client/src/app/view/components/footer/footer.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,28 @@ <h6 class="mb-2 mb-md-4">{{ lang.get("FOOTER_CO_WORKING_PLACE") }}</h6>
<li>55131 Mainz</li>
</ul>
<ul class="list-unstyled">
<li>{{ lang.get("PHONE") }}: <a href="tel:+49-641-992-8145">+49-641-992-8145</a></li>
<li>{{ lang.get("FAX") }}: <a href="fax:+49-641-991-9824">+49-641-991-9824</a></li>
<li>{{ lang.get("PHONE") }}: <a href="tel:+49-641-309-2467">+49-641-309-2467</a></li>
</ul>
</div>
</div>
<div class="col-12 col-md-4 col-lg-3 offset-md-0 offset-lg-1 mt-4 mt-md-0">
<div class="text-container">
<h6 class="mb-3 mb-md-4">{{ lang.get("FOOTER_PROJECT_OVERVIEW_TITLE") }}</h6>
<div class="row mb-2" *ngFor="let project of projectList">
<div
class="row mb-2"
*ngFor="let project of projectList">
<div class="col-4 d-flex align-items-center">
<img class="img-thumbnail" [src]="project.imageSrc" [alt]="project.name" />
<img
class="img-thumbnail"
[src]="project.imageSrc"
[alt]="project.name" />
</div>
<div class="col-6 col-md">
<a target="_blank" [href]="project.href">{{ project.name }}</a>
<a
target="_blank"
[href]="project.href"
>{{ project.name }}</a
>
</div>
</div>
</div>
Expand All @@ -50,17 +58,23 @@ <h6 class="mb-3 mb-md-4">{{ lang.get("FOOTER_PROJECT_OVERVIEW_TITLE") }}</h6>
<div class="col-12">
<ul class="nav justify-content-center justify-content-md-end">
<li class="nav-item">
<a [routerLink]="'/project/legal-notice'" class="nav-link">
<a
[routerLink]="'/project/legal-notice'"
class="nav-link">
{{ lang.get("NAV_ITEM_LEGAL_NOTICE") }}
</a>
</li>
<li class="nav-item">
<a [routerLink]="'/project/policy'" class="nav-link">
<a
[routerLink]="'/project/policy'"
class="nav-link">
{{ lang.get("NAV_ITEM_POLICY") }}
</a>
</li>
<li class="nav-item">
<a href="mailto:[email protected]" class="nav-link">
<a
href="mailto:[email protected]"
class="nav-link">
{{ lang.get("NAV_ITEM_CONTACT") }}
</a>
</li>
Expand Down

0 comments on commit 1c6390d

Please sign in to comment.