Redo user comments list

This commit is contained in:
2026-04-18 16:28:50 +02:00
parent 4fc11d7329
commit 2480c5b309
3 changed files with 88 additions and 121 deletions

View File

@@ -1,7 +1,6 @@
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" class="scroll-smooth">
@include('partials.head')
<body class="font-sans antialiased">
<div class="flex flex-col min-h-screen bg-gray-100 dark:bg-neutral-900">
@include('layouts.navigation')
@@ -9,13 +8,11 @@
<main>
@include('user.partials.background')
<div
class="relative max-w-[120rem] mx-auto sm:px-6 lg:px-8 space-y-6 pt-20 mt-[65px] flex flex-row justify-center xl:justify-normal">
<div class="flex flex-col xl:flex-row">
class="relative max-w-[120rem] mx-auto sm:px-6 lg:px-8 space-y-6 pt-20 mt-[65px] flex flex-row justify-center md:justify-normal">
<div class="grid md:grid-flow-col gap-4 xl:w-5/6 flex-row">
@include('profile.partials.sidebar')
<div class="pb-2 space-y-6 max-w-7xl px-0 md:px-6 lg:px-8 pt-8 xl:pt-0 flex flex-row">
<div class="flex flex-col gap-2">
<livewire:user-comments :model="$user"/>
</div>
</div>
</div>
@@ -23,5 +20,4 @@
@include('layouts.footer')
</div>
</body>
</html>