20 lines
513 B
HTML
20 lines
513 B
HTML
<section class="pb-10 relative">
|
|
<div
|
|
class="max-w-screen-xl mx-auto px-4 sm:px-6 lg:px-8 pt-24 pb-10 flex sm:flex-row flex-col space-y-2 items-center sm:space-x-4"
|
|
>
|
|
<div class="flex-1">
|
|
<app-search />
|
|
</div>
|
|
</div>
|
|
|
|
<div class="max-w-6xl mx-auto px-4">
|
|
@if (loading().isLoading) {
|
|
<div class="flex justify-center items-center h-96">
|
|
<p>Chargement...</p>
|
|
</div>
|
|
} @else {
|
|
<app-vertical-profile-list [profiles]="profiles()" />
|
|
}
|
|
</div>
|
|
</section>
|