1
0
Fork 0
mirror of https://github.com/archtechx/laravel-tips.git synced 2025-12-12 05:14:04 +00:00

livewire thread

This commit is contained in:
Samuel Štancl 2021-04-09 18:47:19 +02:00
parent a60370fbc9
commit 57ab16675e
18 changed files with 244 additions and 25 deletions

View file

@ -1,4 +1,4 @@
<x:layout :title="$thread->title">
<x:layout :title="$thread->title" :preview="$thread->title">
<header class="relative py-24">
<div
class="absolute w-full transform skew-y-12 pointer-events-none h-72 md:h-96 -translate-y-1/4 bg-gradient-to-br from-yellow-300 to-pink-400 mix-blend-multiply">
@ -24,7 +24,7 @@
<section class="py-12 bg-white md:py-24">
<x:container>
<x:author-card :tip="$thread" />
<x:author-card :tip="$thread" :links="$thread->links" />
</x:container>
</section>
</main>