-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from FredericoBresani/gh-pages
Design improvements
- Loading branch information
Showing
26 changed files
with
233 additions
and
63 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,11 +1,59 @@ | ||
export const partnersOptions: { img_address: string }[] = [ | ||
/*{ | ||
img_address: '../../../assets/images/logo-manguezal.png', | ||
export const partnersOptions: { img_address: string, type: string }[] = [ | ||
{ | ||
img_address: '../../../assets/images/CESAR-01.png', | ||
type: 'tubarao' | ||
}, | ||
{ | ||
img_address: '../../../assets/images/Citi-01.png', | ||
type: 'chie' | ||
}, | ||
{ | ||
img_address: '../../../assets/images/Neurotech-01.png', | ||
type: 'chie', | ||
|
||
}, | ||
{ | ||
img_address: '../../../assets/images/Porto-Digital-01.png', | ||
type: 'guaiamum', | ||
}, | ||
{ | ||
img_address: '../../../assets/images/Sebrae-01.png', | ||
type: 'chie' | ||
}, | ||
{ | ||
img_address: '../../../assets/images/brain.png', | ||
type: 'aratu', | ||
}, | ||
{ | ||
img_address: '../../../assets/images/arsenal.png', | ||
type: 'aratu', | ||
}, | ||
. | ||
. | ||
. | ||
{ | ||
img_address: '../../../assets/images/logo-manguezal.png', | ||
}*/ | ||
img_address: '../../../assets/images/cubo.png', | ||
type: 'aratu', | ||
}, | ||
{ | ||
img_address: '../../../assets/images/daus.png', | ||
type: 'chie', | ||
}, | ||
{ | ||
img_address: '../../../assets/images/happen.png', | ||
type: 'aratu', | ||
}, | ||
{ | ||
img_address: '../../../assets/images/inover.png', | ||
type: 'aratu', | ||
}, | ||
{ | ||
img_address: '../../../assets/images/medstaff.png', | ||
type: 'aratu', | ||
}, | ||
{ | ||
img_address: '../../../assets/images/quark.png', | ||
type: 'aratu', | ||
}, | ||
{ | ||
img_address: '../../../assets/images/spencer.png', | ||
type: 'aratu', | ||
}, | ||
]; |
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 |
---|---|---|
@@ -1,9 +1,34 @@ | ||
<div class="partners-body"> | ||
<img class="decorator" src="../../assets/images/IDV-Mangue_RUA-DA-AURORA-MANGUEBEAT.png"> | ||
<div class="title">Apoio | Patrocínio</div> | ||
<div class="title">Patrocínio</div> | ||
<div class="partners"> | ||
<div class="partner" *ngFor="let partner of partners"> | ||
<img src="{{ partner.img_address }}"> | ||
<div class="tubarao"> | ||
<div class="title">Tubarão</div> | ||
<div class="partner" *ngFor="let partner of tubaroes"> | ||
<img src="{{ partner.img_address }}"> | ||
</div> | ||
</div> | ||
<div class="guaiamum"> | ||
<div class="title">Guaiamum</div> | ||
<div class="partner" *ngFor="let partner of guaiamuns"> | ||
<img src="{{ partner.img_address }}"> | ||
</div> | ||
</div> | ||
<div class="aratu"> | ||
<div class="title">Aratu</div> | ||
<div class="partners-container"> | ||
<div class="partner" *ngFor="let partner of aratus"> | ||
<img src="{{ partner.img_address }}"> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="chie"> | ||
<div class="title">Chié / Apoio</div> | ||
<div class="partners-container"> | ||
<div class="partner" *ngFor="let partner of chies"> | ||
<img src="{{ partner.img_address }}"> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
Oops, something went wrong.