fix: update user menu link to settings and add alt attribute to background image

This commit is contained in:
pacnpal
2025-06-19 22:37:44 -04:00
parent cc33781245
commit 48646570d8
3 changed files with 3 additions and 2 deletions

View File

@@ -50,7 +50,7 @@
<span>Profile</span> <span>Profile</span>
</a> </a>
<a <a
href="{{ route('profile') }}" href="{{ route('settings') }}"
class="flex items-center w-full gap-3 px-4 py-2 text-gray-300 transition-colors hover:text-white hover:bg-gray-800/50 focus:outline-none focus:text-white focus:bg-gray-800/50" class="flex items-center w-full gap-3 px-4 py-2 text-gray-300 transition-colors hover:text-white hover:bg-gray-800/50 focus:outline-none focus:text-white focus:bg-gray-800/50"
role="menuitem" role="menuitem"
> >

View File

@@ -15,7 +15,7 @@
</head> </head>
<body class="antialiased font-sans"> <body class="antialiased font-sans">
<div class="bg-gray-50 text-black/50 dark:bg-black dark:text-white/50"> <div class="bg-gray-50 text-black/50 dark:bg-black dark:text-white/50">
<img id="background" class="absolute -left-20 top-0 max-w-[877px]" src="https://laravel.com/assets/img/welcome/background.svg" /> <img id="background" class="absolute -left-20 top-0 max-w-[877px]" src="https://laravel.com/assets/img/welcome/background.svg" alt="" />
<div class="relative min-h-screen flex flex-col items-center justify-center selection:bg-[#FF2D20] selection:text-white"> <div class="relative min-h-screen flex flex-col items-center justify-center selection:bg-[#FF2D20] selection:text-white">
<div class="relative w-full max-w-2xl px-6 lg:max-w-7xl"> <div class="relative w-full max-w-2xl px-6 lg:max-w-7xl">
<header class="grid grid-cols-2 items-center gap-2 py-10 lg:grid-cols-3"> <header class="grid grid-cols-2 items-center gap-2 py-10 lg:grid-cols-3">

View File

@@ -7,6 +7,7 @@ export default {
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php', './vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php', './storage/framework/views/*.php',
'./resources/views/**/*.blade.php', './resources/views/**/*.blade.php',
'./resources/js/**/*.{js,jsx,ts,tsx,vue}',
], ],
theme: { theme: {