mirror of
https://github.com/archtechx/laravel-tips.git
synced 2025-12-11 21:14:02 +00:00
44 lines
1.8 KiB
PHP
44 lines
1.8 KiB
PHP
<x:layout>
|
|
<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">
|
|
</div>
|
|
|
|
<div class="w-full max-w-4xl px-4 mx-auto sm:px-6 md:px-8">
|
|
<div class="flex flex-col items-center space-y-6 text-center text-yellow-900">
|
|
<h1 class="text-4xl font-bold tracking-tighter md:text-5xl lg:text-8xl">Laravel Code Tips</h1>
|
|
|
|
<p class="text-xl font-medium">Make your Laravel code cleaner, faster, and safer.</p>
|
|
|
|
<ul class="inline-grid grid-flow-col gap-4">
|
|
<li>
|
|
<a class="transition border-b-2 border-pink-100 hover:border-pink-900 focus:outline-none focus:border-pink-900"
|
|
href="{{ $twitter }}">Twitter</a>
|
|
</li>
|
|
|
|
<li>
|
|
<span>·</span>
|
|
</li>
|
|
|
|
<li>
|
|
<a class="transition border-b-2 border-pink-100 hover:border-pink-900 focus:outline-none focus:border-pink-900"
|
|
href="{{ $telegram }}">Telegram</a>
|
|
</li>
|
|
|
|
<li>
|
|
<span>·</span>
|
|
</li>
|
|
|
|
<li>
|
|
<a class="transition border-b-2 border-pink-100 hover:border-pink-900 focus:outline-none focus:border-pink-900"
|
|
href="{{ $newsletter }}">Newsletter</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="flex-1 divide-y" role="feed">
|
|
<x:feed :tips="$tips" />
|
|
</main>
|
|
</x:layout>
|