Files
AFC-Demo/resources/views/company-search.blade.php
T

29 lines
1.4 KiB
PHP
Raw Normal View History

2025-10-17 09:20:35 +02:00
<x-layouts.app :title="__('Unternehmensauskunft')">
<div class="flex h-full w-full flex-1 flex-col gap-4 rounded-xl">
<div class="mb-4">
<flux:heading size="xl" class="mb-2">{{ __('Unternehmensauskunft') }}</flux:heading>
<flux:text>{{ __('Suchen Sie nach Unternehmensinformationen') }}</flux:text>
</div>
<div class="mb-6">
<flux:input
type="search"
placeholder="{{ __('Unternehmen suchen...') }}"
class="w-full"
/>
</div>
<div class="grid auto-rows-min gap-4 md:grid-cols-2">
<div class="relative aspect-video overflow-hidden rounded-xl border border-neutral-200 dark:border-neutral-700">
<x-placeholder-pattern class="absolute inset-0 size-full stroke-gray-900/20 dark:stroke-neutral-100/20" />
</div>
<div class="relative aspect-video overflow-hidden rounded-xl border border-neutral-200 dark:border-neutral-700">
<x-placeholder-pattern class="absolute inset-0 size-full stroke-gray-900/20 dark:stroke-neutral-100/20" />
</div>
</div>
<div class="relative h-full flex-1 overflow-hidden rounded-xl border border-neutral-200 dark:border-neutral-700">
<x-placeholder-pattern class="absolute inset-0 size-full stroke-gray-900/20 dark:stroke-neutral-100/20" />
</div>
</div>
</x-layouts.app>