Update site theme look

This commit is contained in:
DariusIII
2026-08-28 00:59:02 +02:00
parent 3285303984
commit 103406de59
129 changed files with 1947 additions and 1549 deletions
+6 -13
View File
@@ -1,17 +1,10 @@
@extends('layouts.main')
@section('content')
<x-panel class="mx-auto max-w-4xl">
<div class="flex flex-col gap-6 sm:flex-row sm:items-center sm:justify-between">
<div>
<h1 class="text-2xl font-bold text-gray-900 dark:text-gray-100">Welcome back</h1>
<p class="mt-2 text-gray-600 dark:text-gray-400">Jump back into browsing releases, searching the index, or managing your account.</p>
</div>
<div class="flex flex-wrap gap-2">
<x-button-link href="{{ route('search') }}" icon="fas fa-search">Search</x-button-link>
<x-button-link href="{{ route('All') }}" variant="secondary" icon="fas fa-list-ul">Browse</x-button-link>
</div>
</div>
</x-panel>
<x-page-header title="Welcome back" eyebrow="Your index workspace" description="Jump back into browsing releases, searching the index, or managing your account." icon="fas fa-house">
<x-slot:actions>
<a href="{{ route('search') }}" class="workspace-hero__action"><i class="fas fa-search" aria-hidden="true"></i>Search</a>
<a href="{{ route('All') }}" class="workspace-hero__action"><i class="fas fa-list-ul" aria-hidden="true"></i>Browse</a>
</x-slot:actions>
</x-page-header>
@endsection