style: refine article card layout and colors

This commit is contained in:
Rico
2026-01-07 19:50:26 +01:00
parent db7ae1c65f
commit e0c3d688ae
2 changed files with 13 additions and 19 deletions

View File

@@ -10,7 +10,7 @@ class PostsController extends Controller
{
public function index()
{
$posts = Sheets::all()->filter(fn ($post) => ! $post->hidden)->sortByDesc('date');
$posts = Sheets::all()->filter(fn($post) => ! $post->hidden)->sortByDesc('date');
$paginatedPosts = Paginate::collection($posts, 6);
return view('posts.index', [