Skip to content
This repository was archived by the owner on Jan 29, 2025. It is now read-only.

Commit 5107897

Browse files
committed
fix: prepare website for upcomming event
1 parent 582fbe1 commit 5107897

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

src/app/landing-page/landing-page.component.html

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
About Us
3636
</a>
3737
</li>
38-
<li class="socials-nav-item">
38+
<li *ngIf="promocodes.length" class="socials-nav-item">
3939
<a (click)="scroll(offers)" class="navigation-link" aria-label="Offers">
4040
Offers
4141
</a>
@@ -89,7 +89,7 @@
8989
About Us
9090
</a>
9191
</li>
92-
<li class="socials-nav-item">
92+
<li *ngIf="promocodes.length" class="socials-nav-item">
9393
<a (click)="scroll(offers);toggleDropdown()" class="navigation-link" aria-label="Offers">
9494
Offers
9595
</a>
@@ -156,7 +156,7 @@
156156
<div class="container">
157157
<h5 class="heading-alt text-center">
158158
<i class="fa fa-calendar-o base-clr-txt"></i>
159-
15th - 19th of April 2024
159+
To Be Announced
160160
</h5>
161161
<h5 class="heading-alt text-center mt-2">
162162
<i class="fa fa-map-marker base-clr-txt"></i>
@@ -189,7 +189,8 @@ <h6 class="thin base-font align-center">
189189
<mat-divider></mat-divider>
190190

191191
<div #stands>
192-
<app-stands *ngIf="eventId" [eventId]="eventId"></app-stands>
192+
<!-- TODO: Change false to eventId when stands are update -->
193+
<app-stands *ngIf="false" [eventId]="eventId"></app-stands>
193194
</div>
194195
<mat-divider></mat-divider>
195196

@@ -469,7 +470,7 @@ <h6>Target</h6>
469470
</section>
470471
<mat-divider></mat-divider>
471472

472-
<section #offers class="price-area section-padding" style="margin-bottom: 5%;">
473+
<section *ngIf="promocodes.length" #offers class="price-area section-padding" style="margin-bottom: 5%;">
473474
<div class="container">
474475
<div class="row">
475476
<div class="text-center">
@@ -566,7 +567,7 @@ <h2 class="text-center">Frequently Asked Questions</h2>
566567
<span class="faq-title">We want to be sponsors. How can we proceed?</span>
567568
</mat-panel-title>
568569
</mat-expansion-panel-header>
569-
<p>You can find all the information regarding this in <a href="https://sponsors.sinfo.org">our Sponsors Website</a> or
570+
<p>You can find all the information regarding this in <a href="https://sponsors.sinfo.org">our Sponsors Website</a> or
570571
send us an e-mail to [email protected] for additional information and assistance!
571572
</p>
572573
</mat-expansion-panel>

src/app/landing-page/schedule/schedule.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<section *ngIf="sessions && sessions.length" id="schedule" class="section schedule-section align-center">
55
<div class="container">
66
<span class="icon section-icon icon-office-21"></span>
7-
<h3>Schedule</h3>
7+
<h3>Schedule - TBA</h3>
88
<strong id="subtitle">All times displayed in the schedule are relative to Lisbon's timezone, GMT+01:00</strong>
99
<br />
1010

@@ -391,4 +391,4 @@ <h6 class="title">
391391
</div>
392392
<!-- Schedule end -->
393393

394-
</section>
394+
</section>

0 commit comments

Comments
 (0)