1
0
Fork 0
mirror of https://github.com/archtechx/laravel-tips.git synced 2025-12-12 05:14:04 +00:00
laravel-tips/resources/views/tips/index.blade.php
2021-04-07 03:16:02 +02:00

22 lines
909 B
PHP

<x:layout>
<header class="mt-8">
<h1 class="text-5xl w-full">Laravel Code Tips</h1>
<h2 class="mt-6 text-2xl text-gray-700">Make your Laravel code cleaner, faster, and safer.</h2>
<div class="mt-6 text-gray-800 text-lg">
<a class="inline" href="{{ $twitter }}" target="_blank">
<span class="link">Twitter</span>
</a>
<span class="px-1">·</span>
<a class="inline" href="{{ $newsletter }}" target="_blank">
<span class="link">Newsletter</span>
</a>
<span class="px-1">·</span>
<a class="inline" href="{{ $telegram }}" target="_blank">
<span class="link">Telegram</span>
</a>
</div>
</header>
<main class="mx-auto flex justify-between items-center gap-8 sm:w-1/2">
<x:feed :tips="$tips" />
</main>
</x:layout>