Skip to content

Commit

Permalink
fix: prepare website for upcomming event
Browse files Browse the repository at this point in the history
  • Loading branch information
nalves599 committed Jul 25, 2024
1 parent 582fbe1 commit a475f7e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions src/app/landing-page/landing-page.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
About Us
</a>
</li>
<li class="socials-nav-item">
<li *ngIf="promocodes.length" class="socials-nav-item">
<a (click)="scroll(offers)" class="navigation-link" aria-label="Offers">
Offers
</a>
Expand Down Expand Up @@ -89,7 +89,7 @@
About Us
</a>
</li>
<li class="socials-nav-item">
<li *ngIf="promocodes.length" class="socials-nav-item">
<a (click)="scroll(offers);toggleDropdown()" class="navigation-link" aria-label="Offers">
Offers
</a>
Expand Down Expand Up @@ -156,7 +156,7 @@
<div class="container">
<h5 class="heading-alt text-center">
<i class="fa fa-calendar-o base-clr-txt"></i>
15th - 19th of April 2024
To Be Announced
</h5>
<h5 class="heading-alt text-center mt-2">
<i class="fa fa-map-marker base-clr-txt"></i>
Expand Down Expand Up @@ -189,7 +189,8 @@ <h6 class="thin base-font align-center">
<mat-divider></mat-divider>

<div #stands>
<app-stands *ngIf="eventId" [eventId]="eventId"></app-stands>
<!-- TODO: Change false to eventId when stands are update -->
<app-stands *ngIf="false" [eventId]="eventId"></app-stands>
</div>
<mat-divider></mat-divider>

Expand Down Expand Up @@ -469,7 +470,7 @@ <h6>Target</h6>
</section>
<mat-divider></mat-divider>

<section #offers class="price-area section-padding" style="margin-bottom: 5%;">
<section *ngIf="promocodes.length" #offers class="price-area section-padding" style="margin-bottom: 5%;">
<div class="container">
<div class="row">
<div class="text-center">
Expand Down Expand Up @@ -537,11 +538,10 @@ <h2 class="text-center">Frequently Asked Questions</h2>
<mat-panel-title>
<mat-icon class="faq-chev">{{panel2.expanded ? 'keyboard_arrow_up' :
'keyboard_arrow_down'}}</mat-icon>
<span class="faq-title">Where is SINFO 31 taking place?</span>
<span class="faq-title">Where is SINFO 32 taking place?</span>
</mat-panel-title>
</mat-expansion-panel-header>
<p>Our venue changed place this year. Visit us at Técnico Innovation Center, in Lisbon, from the 15th to the 19th of April, 2024!
</p>
<p>To be announced. Stay tuned for more information!</p>
</mat-expansion-panel>

<mat-expansion-panel #panel3 hideToggle>
Expand All @@ -566,7 +566,7 @@ <h2 class="text-center">Frequently Asked Questions</h2>
<span class="faq-title">We want to be sponsors. How can we proceed?</span>
</mat-panel-title>
</mat-expansion-panel-header>
<p>You can find all the information regarding this in <a href="https://sponsors.sinfo.org">our Sponsors Website</a> or
<p>You can find all the information regarding this in <a href="https://sponsors.sinfo.org">our Sponsors Website</a> or
send us an e-mail to [email protected] for additional information and assistance!
</p>
</mat-expansion-panel>
Expand Down
4 changes: 2 additions & 2 deletions src/app/landing-page/schedule/schedule.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<section *ngIf="sessions && sessions.length" id="schedule" class="section schedule-section align-center">
<div class="container">
<span class="icon section-icon icon-office-21"></span>
<h3>Schedule</h3>
<h3>Schedule - TBA</h3>
<strong id="subtitle">All times displayed in the schedule are relative to Lisbon's timezone, GMT+01:00</strong>
<br />

Expand Down Expand Up @@ -391,4 +391,4 @@ <h6 class="title">
</div>
<!-- Schedule end -->

</section>
</section>

0 comments on commit a475f7e

Please sign in to comment.