Skip to content

Commit

Permalink
Merge branch 'main' into 20240213-controllers
Browse files Browse the repository at this point in the history
  • Loading branch information
asbiin authored Feb 15, 2024
2 parents 1f24299 + 849979b commit caa89ca
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
|
*/

'name' => env('APP_NAME', 'Laravel'),
'name' => env('APP_NAME', 'Tous les prénoms'),

/*
|--------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion resources/views/components/name-items.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class="w-4 h-4 ml-2 text-gray-400 hover:text-rose-400 hover:w-5 hover:h-5 transi
@endif

@else
<a href="{{ route('register') }}">
<a href="{{ route('register') }}" name="{{ $name['name'] }}">
<svg
class="w-5 h-5 ml-2 text-gray-400 hover:text-rose-400 hover:w-5 hover:h-5 transition-all cursor-pointer"
xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#9a9a9a" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-bookmark"><path d="m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z"/>
Expand Down
3 changes: 1 addition & 2 deletions resources/views/home/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<div>
<div class="bg-white shadow-md rounded-lg">
<div class="flex items-center border-b">
<img src="/img/prenom_du_jour.svg" class="w-48 mx-auto py-2" />
<img src="/img/prenom_du_jour.svg" alt="Prénom du jour" class="w-48 mx-auto py-2" />
</div>

<div class="p-6">
Expand Down Expand Up @@ -127,7 +127,6 @@
<!-- avatars -->
<div class="flex -space-x-4 rtl:space-x-reverse mr-5">
@foreach ($list['names'] as $name)
{{-- <img class="w-10 h-10 border-2 border-white rounded-full dark:border-gray-800" src="/docs/images/people/profile-picture-5.jpg" alt=""> --}}
<div class="rounded-full w-6 h-6 mr-4 ring-4 ring-violet-100">{!! \App\Helpers\NameHelper::getAvatar($name['name']) !!}</div>
@endforeach
</div>
Expand Down
1 change: 1 addition & 0 deletions resources/views/layouts/guest.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">
<meta name="description" content="Trouvez le prénom idéal pour votre enfant. Découvrez l'origine, la signification, les célébrités et la popularité de milliers de prénoms.">

<title>{{ config('app.name', 'Laravel') }}</title>

Expand Down

0 comments on commit caa89ca

Please sign in to comment.