refactor: remove redundant menu border and preload icon stylesheet for performance

This commit is contained in:
Ümit Tunç
2026-05-26 20:34:08 +03:00
parent 16f9d5a58a
commit 48f03cb83b
2 changed files with 3 additions and 1 deletions
@@ -94,7 +94,7 @@
{{ __('career.internship_title') }}
</a>
</li>
<li class="nav-item border-top border-slate-100 mt-1 pt-1">
<li class="nav-item">
<a class="dropdown-item hover:!text-[#e31e24] font-semibold" href="{{ route('intern.login') }}">
Stajyer Girişi
</a>
+2
View File
@@ -59,6 +59,8 @@ $favicon_path = setting('site_favicon');
<link rel="icon" href="{{ $favicon_path ? (str_starts_with($favicon_path, 'http') ? $favicon_path : asset($favicon_path)) : asset('assets/img/favicon.png') }}">
@stack('head')
<link rel="stylesheet" href="{{ asset('html/style.css') }}">
<link rel="preload" href="{{ asset('assets/css/icon.css') }}" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="{{ asset('assets/css/icon.css') }}"></noscript>
<link rel="preload" href="{{ asset('assets/fonts/unicons/unicons.css') }}" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="{{ asset('assets/fonts/unicons/unicons.css') }}"></noscript>
<link rel="preload" href="{{ asset('assets/css/plugins.css') }}" as="style" onload="this.onload=null;this.rel='stylesheet'">