Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

modify the message shown when there are no chats yet #220

Merged
merged 1 commit into from
Jan 13, 2024
Merged
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
11 changes: 7 additions & 4 deletions src/app/chat/chat.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,17 +55,20 @@ import { interval, take } from 'rxjs';

<ng-template #noConversations>
<div class="">
<h1 class="font-bold">Du hast noch keine Chats</h1>
<h1 class="mb-4 font-bold">Du hast noch keine Chats</h1>
<p class="text-gray-500">
Schau dir die Profile anderer Nutzer an und schreibe ihnen eine
Nachricht.
Schaue dir deine Empfehlungen an, um Nutzer zu finden, denen du eine
Nachricht schreiben kannst.
</p>
<p class="text-gray-500">
Über neue Empfehlungen wirst du von uns per E-Mail informiert.
</p>
<!-- Button zu der Empfehlungsseite -->
<div class="my-4">
<a
class="rounded bg-blue-500 py-2 px-4 font-bold text-white no-underline hover:bg-blue-700"
routerLink="/recommendations"
>Zurück zur Übersicht</a
>Zu den Empfehlungen</a
>
</div>
</div>
Expand Down
Loading