fixed autofetch, fixed ads
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
@section('description'){{ config('app.settings.app_description') }}@endsection
|
||||
@section('keywords'){{ config('app.settings.app_keyword') }}@endsection
|
||||
<div class="container">
|
||||
<div class="flex justify-center items-center py-3">
|
||||
<div class="flex items-center">
|
||||
@@ -76,14 +78,17 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<flux:heading class="mt-10 mb-3 w-full text-center" size="xl" level="1">----- Popular Articles -----</flux:heading>
|
||||
<div class="mt-10 mb-3 w-full lg:max-w-2xl dark:text-white text-accent-content justify-self-center text-center text-xl" size="xl">
|
||||
<p>----- Popular Articles -----</p>
|
||||
</div>
|
||||
|
||||
<div class="mb-3"></div>
|
||||
<div class="flex justify-center items-center py-3">
|
||||
<div class="flex justify-center items-center">
|
||||
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 p-1">
|
||||
|
||||
@foreach(config('app.blogs') as $blog)
|
||||
<a wire:navigate href="{{ route('blog', $blog->slug) }}">
|
||||
<a href="{{ route('blog', $blog->slug) }}">
|
||||
<div class="flex items-center">
|
||||
<div class="group relative mx-auto w-96 overflow-hidden rounded-[16px] dark:bg-zinc-800 bg-zinc-200 p-[1px] ease-in-out hover:bg-gradient-to-r hover:from-zinc-600 hover:via-zinc-800 hover:to-zinc-700">
|
||||
<div class="group-hover:animate-spin-slow invisible absolute -top-40 -bottom-40 left-10 right-10 bg-gradient-to-r from-transparent via-gray-600 to-transparent group-hover:visible"></div>
|
||||
@@ -102,5 +107,4 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user