|
10 | 10 | <ion-icon size="large" name="navigate-circle" (click)="goToStatusPage()"></ion-icon> |
11 | 11 | </ion-buttons> |
12 | 12 | <ion-title (click)="debugService.devModeEasterEgg()"> |
13 | | - <ion-icon *ngIf="mode === 'ios'" style="font-size: 140px;" [src]="themeService.isDark() ? 'assets/lazztech_hub_light.svg' : 'assets/lazztech_hub_dark.svg'"></ion-icon> |
14 | | - <img *ngIf="mode === 'md'" [src]="themeService.isDark() ? 'assets/lazztech_hub_light.svg' : 'assets/lazztech_hub_dark.svg'" style="width: 140px" class="vertical-align"/> |
| 13 | + <div style="display: flex; align-items: center; justify-content: center;"> |
| 14 | + <ion-icon *ngIf="mode === 'ios'" style="font-size: 140px;" [src]="themeService.isDark() ? 'assets/lazztech_title_light.svg' : 'assets/lazztech_title.svg'"></ion-icon> |
| 15 | + <img *ngIf="mode === 'md'" [src]="themeService.isDark() ? 'assets/lazztech_title_light.svg' : 'assets/lazztech_title.svg'" style="width: 140px" class="vertical-align"/> |
| 16 | + <span style="margin-left: 8px; font-size: 1.75rem;"> | noun</span> |
| 17 | + </div> |
15 | 18 | </ion-title> |
16 | 19 |
|
17 | 20 | <ion-progress-bar *ngIf="loading" type="indeterminate"></ion-progress-bar> |
|
24 | 27 |
|
25 | 28 | <ion-content fullscreen="true"> |
26 | 29 |
|
27 | | - <ion-searchbar (ionInput)="filterHubs($event)" showCancelButton="focus" placeholder="Search Hubs"></ion-searchbar> |
| 30 | + <ion-searchbar (ionInput)="filterHubs($event)" showCancelButton="focus" placeholder="Search Places"></ion-searchbar> |
28 | 31 |
|
29 | 32 | <ion-card style="height:30%" (click)="goToMap()"> |
30 | 33 | <app-maplibre |
|
51 | 54 | </ion-card-header> |
52 | 55 | <ion-icon slot="end" name="arrow-down"></ion-icon> |
53 | 56 | <ion-card-content> |
54 | | - Create an event and invite guests! |
| 57 | + Create an event and invite people! |
55 | 58 | </ion-card-content> |
56 | 59 | </ion-item> |
57 | 60 |
|
|
81 | 84 |
|
82 | 85 | <ion-list *ngIf="filter === ''"> |
83 | 86 | <ion-list-header> |
84 | | - <ion-text>Hubs</ion-text> |
| 87 | + <ion-text>Places</ion-text> |
85 | 88 | </ion-list-header> |
86 | 89 |
|
87 | 90 | <ion-item lines="none" *ngIf="!loading && !userHubs?.length"> |
|
90 | 93 | </ion-card-header> |
91 | 94 | <ion-icon slot="end" name="arrow-down"></ion-icon> |
92 | 95 | <ion-card-content> |
93 | | - Create a community Hub and receive notifications when people gather. |
| 96 | + Create a community Place and receive notifications when people gather. |
94 | 97 | </ion-card-content> |
95 | 98 | </ion-item> |
96 | 99 |
|
|
107 | 110 |
|
108 | 111 | <ion-list *ngIf="filter !== ''"> |
109 | 112 | <ion-list-header> |
110 | | - <ion-text>Hubs</ion-text> |
| 113 | + <ion-text>Places</ion-text> |
111 | 114 | </ion-list-header> |
112 | 115 | <div *ngFor="let userHub of filteredUserHubs; trackBy: userTrackByHub"> |
113 | 116 | <app-hub-card |
|
0 commit comments