<x-app-layout>
<x-slot name="header">
<h2 class="font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight">
{{ __('Dashboard') }}
</h2>
</x-slot>
<div class="py-6 max-w-7xl mx-auto sm:px-6 lg:px-8 grid grid-cols-1 md:grid-cols-2 xl:grid-cols-4 gap-6">
{{-- Portfolio --}}
<div class="bg-white shadow rounded-lg p-6 flex items-center space-x-4">
<div class="bg-blue-600 p-3 rounded-full">
<svg class="h-8 w-8 text-white" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 7v4a1 1 0 001 1h3m10-5h3a1 1 0 011 1v10a1 1 0 01-1 1h-3m-4 0H9m6-4H9" />
</svg>
</div>
<div>
<p class="text-3xl font-bold text-gray-900">{{ $portfolioCount }}</p>
<p class="text-sm font-medium text-gray-500 uppercase tracking-wide">Portfolios</p>
</div>
</div>
{{-- Contacts --}}
<div class="bg-white shadow rounded-lg p-6 flex items-center space-x-4">
<div class="bg-green-600 p-3 rounded-full">
<svg class="h-8 w-8 text-white" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8m0 8v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6" />
</svg>
</div>
<div>
<p class="text-3xl font-bold text-gray-900">{{ $contactCount }}</p>
<p class="text-sm font-medium text-gray-500 uppercase tracking-wide">Contacts</p>
</div>
</div>
{{-- Subscribers --}}
<div class="bg-white shadow rounded-lg p-6 flex items-center space-x-4">
<div class="bg-purple-600 p-3 rounded-full">
<svg class="h-8 w-8 text-white" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M5.121 17.804A9 9 0 1118.879 6.196 9 9 0 015.12 17.804zM15 11a3 3 0 11-6 0 3 3 0 016 0zM12 14v2m0 4h.01" />
</svg>
</div>
<div>
<p class="text-3xl font-bold text-gray-900">{{ $subscriberCount }}</p>
<p class="text-sm font-medium text-gray-500 uppercase tracking-wide">Subscribers</p>
</div>
</div>
{{-- Team --}}
<div class="bg-white shadow rounded-lg p-6 flex items-center space-x-4">
<div class="bg-indigo-600 p-3 rounded-full">
<svg class="h-8 w-8 text-white" xmlns="http://www.w3.org/2000/svg" fill="none"
viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M17 20h5v-2a4 4 0 00-5-3.87M9 20H4v-2a4 4 0 015-3.87m6-5.13a4 4 0 11-8 0 4 4 0 018 0zm6 4a4 4 0 11-8 0 4 4 0 018 0z" />
</svg>
</div>
<div>
<p class="text-3xl font-bold text-gray-900">{{ $teamCount }}</p>
<p class="text-sm font-medium text-gray-500 uppercase tracking-wide">Team</p>
</div>
</div>
</div>
</x-app-layout>