Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Interface/src/Components/home/home.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,23 +39,23 @@ <h2 class="text-white mb-4" style="font-size: 2.985984rem;">{{ 'HOW_IT_WORKS' |
<div class="list-progress"><div class="inner"></div></div>

<li>
<h4 class="text-white mb-3">{{ 'STEP_REGISTER_TITLE' | translate }}</h4>
<h3 class="text-white mb-3">{{ 'STEP_REGISTER_TITLE' | translate }}</h3>
<p class="text-white">{{ 'STEP_REGISTER_DESC' | translate }}</p>
<div class="icon-holder">
<img src="assets/icons/register-icon.png" class="icon" alt="email-icon">
</div>
</li>

<li>
<h4 class="text-white mb-3">{{ 'STEP_FB_TITLE' | translate }}</h4>
<h3 class="text-white mb-3">{{ 'STEP_FB_TITLE' | translate }}</h3>
<p class="text-white">{{ 'STEP_FB_DESC' | translate }}</p>
<div class="icon-holder">
<img src="assets/icons/social-media-icon.png" class="icon" alt="email-icon">
</div>
</li>

<li>
<h4 class="text-white mb-3">{{ 'STEP_INSIGHTS_TITLE' | translate }}</h4>
<h3 class="text-white mb-3">{{ 'STEP_INSIGHTS_TITLE' | translate }}</h3>
<p class="text-white">{{ 'STEP_INSIGHTS_DESC' | translate }}</p>
<div class="icon-holder">
<img src="assets/icons/monitor-icon.png" class="icon" alt="email-icon">
Expand Down
13 changes: 7 additions & 6 deletions Interface/src/Components/navbar/navbar.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@


<ul class="navbar-links" [ngClass]="{ 'open': menuOpen }">
<div class="language-switcher">
<select [value]="getCurrentLanguage()" (change)="switchLanguage($any($event.target).value)">
<option value="en">English</option>
<option value="ar">العربية</option>
</select>
</div>
<li class="language-switcher">
<label for="language-selector">🌐 &nbsp;</label>
<select [value]="getCurrentLanguage()" (change)="switchLanguage($any($event.target).value)" id="language-selector">
<option value="en">English</option>
<option value="ar">العربية</option>
</select>
</li>
<li><a routerLink="/home" routerLinkActive="active active-link" [routerLinkActiveOptions]="{ exact: true }">{{ 'HOME' | translate }}</a></li>
<li><a routerLink="/about" routerLinkActive="active active-link">{{ 'ABOUT_US' | translate }}</a></li>
<ng-container *ngIf="isLoggedIn; else notLoggedIn">
Expand Down
12 changes: 6 additions & 6 deletions Interface/src/Components/services/services.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,47 +9,47 @@ <h2 class="section-subtitle">{{ 'services.subtitle' | translate }}</h2>
<div class="service-icon">
<i class="fa-solid fa-chart-simple" style="color: #20c0bd;"></i>
</div>
<h4 class="service-title">{{ 'services.sentiment' | translate }}</h4>
<h3 class="service-title">{{ 'services.sentiment' | translate }}</h3>
</div>

<!-- Service Item 2 -->
<div class="col-md-4 service-item">
<div class="service-icon">
<i class="fa-solid fa-location-crosshairs" style="color: #20c0bd;"></i>
</div>
<h4 class="service-title">{{ 'services.topic' | translate }}</h4>
<h3 class="service-title">{{ 'services.topic' | translate }}</h3>
</div>

<!-- Service Item 3 -->
<div class="col-md-4 service-item">
<div class="service-icon">
<i class="fa-solid fa-lock" style="color: #20c0bd;"></i>
</div>
<h4 class="service-title">{{ 'services.security' | translate }}</h4>
<h3 class="service-title">{{ 'services.security' | translate }}</h3>
</div>

<!-- Service Item 4 -->
<div class="col-md-4 service-item">
<div class="service-icon">
<i class="fa-solid fa-leaf" style="color: #20c0bd;"></i>
</div>
<h4 class="service-title">{{ 'services.eco' | translate }}</h4>
<h3 class="service-title">{{ 'services.eco' | translate }}</h3>
</div>

<!-- Service Item 5 -->
<div class="col-md-4 service-item">
<div class="service-icon">
<i class="fa-solid fa-chart-pie" style="color: #20c0bd;"></i>
</div>
<h4 class="service-title">{{ 'services.report' | translate }}</h4>
<h3 class="service-title">{{ 'services.report' | translate }}</h3>
</div>

<!-- Service Item 6 -->
<div class="col-md-4 service-item">
<div class="service-icon">
<i class="fa-solid fa-robot" style="color: #20c0bd;"></i>
</div>
<h4 class="service-title">{{ 'services.chatbot' | translate }}</h4>
<h3 class="service-title">{{ 'services.chatbot' | translate }}</h3>
</div>
</div>
</div>
Expand Down
Loading