41 lines
1.5 KiB
PHP
41 lines
1.5 KiB
PHP
<x-layouts.app :title="__('Dashboard')">
|
|
<div class="flex h-full w-full flex-1 flex-col gap-4 rounded-xl">
|
|
<div class="flex justify-end">
|
|
<button class="bg-gray-600 p-2 text-white rounded-lg">
|
|
<a href="{{ route('bots.create') }}">
|
|
{{ __('Add Bot') }}
|
|
</a>
|
|
</button>
|
|
</div>
|
|
<div class="grid auto-rows-min gap-4 md:grid-cols-3">
|
|
<div
|
|
class="relative aspect-video overflow-hidden rounded-xl border border-neutral-200 dark:border-neutral-700"
|
|
>
|
|
<div class="p-4">
|
|
<h2>Active Bots</h2>
|
|
</div>
|
|
</div>
|
|
<div
|
|
class="relative aspect-video overflow-hidden rounded-xl border border-neutral-200 dark:border-neutral-700"
|
|
>
|
|
<div class="p-4"></div>
|
|
</div>
|
|
<div
|
|
class="relative aspect-video overflow-hidden rounded-xl border border-neutral-200 dark:border-neutral-700"
|
|
>
|
|
<div class="p-4"></div>
|
|
</div>
|
|
</div>
|
|
<div
|
|
class="relative h-full flex-1 overflow-hidden rounded-xl border border-neutral-200 dark:border-neutral-700"
|
|
>
|
|
<div class="p-4">
|
|
<h2>All Bots</h2>
|
|
</div>
|
|
<div class="p-4">
|
|
@livewire('bots-list')
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</x-layouts.app>
|