1
0
Fork 0
mirror of https://github.com/archtechx/laravel-tips.git synced 2025-12-12 05:14:04 +00:00
This commit is contained in:
Abrar Ahmad 2021-11-10 15:12:46 +05:00
parent c78c21f9d0
commit 217c0b1e22
4 changed files with 7 additions and 9 deletions

2
public/css/app.css vendored

File diff suppressed because one or more lines are too long

View file

@ -1,4 +1,4 @@
{ {
"/js/app.js": "/js/app.js?id=67ee2aea12150f13c1ae", "/js/app.js": "/js/app.js?id=67ee2aea12150f13c1ae",
"/css/app.css": "/css/app.css?id=aa93df7b324092e6f2af" "/css/app.css": "/css/app.css?id=7da845f9b65d550ea7ef"
} }

View file

@ -1,8 +1,8 @@
<div class="z-50 fixed bottom-0 inset-x-0 pb-2 sm:pb-5" x-data="{ show: true, hide() { window.localStorage.show_launch_banner = 'hide'; this.show = false } }" x-init=" <div class="z-50 fixed bottom-0 inset-x-0 pb-2 sm:pb-5" x-data="{ show: true, hide() { window.localStorage.show_banner = 'hide'; this.show = false } }" x-init="
show = window.localStorage.show_launch_banner !== 'hide' show = window.localStorage.show_banner !== 'hide'
" x-show="show"> " x-show="show">
<div class="max-w-screen-xl mx-auto px-2 sm:px-6 lg:px-8"> <div class="max-w-screen-xl mx-auto px-2 sm:px-6 lg:px-8">
<div class="p-2 rounded-lg bg-yellow-600 shadow-lg sm:p-3"> <div class="p-2 rounded-lg bg-gradient-to-br from-yellow-300 to-pink-400 mix-blend-multiply shadow-lg sm:p-3">
<div class="flex items-center justify-between flex-wrap"> <div class="flex items-center justify-between flex-wrap">
<div class="w-0 flex-1 flex items-center"> <div class="w-0 flex-1 flex items-center">
<span class="flex p-2 rounded-lg bg-yellow-800"> <span class="flex p-2 rounded-lg bg-yellow-800">
@ -11,7 +11,7 @@
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 5.882V19.24a1.76 1.76 0 01-3.417.592l-2.147-6.15M18 13a3 3 0 100-6M5.436 13.683A4.001 4.001 0 017 6h1.832c4.1 0 7.625-1.234 9.168-3v14c-1.543-1.766-5.067-3-9.168-3H7a3.988 3.988 0 01-1.564-.317z"></path> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 5.882V19.24a1.76 1.76 0 01-3.417.592l-2.147-6.15M18 13a3 3 0 100-6M5.436 13.683A4.001 4.001 0 017 6h1.832c4.1 0 7.625-1.234 9.168-3v14c-1.543-1.766-5.067-3-9.168-3H7a3.988 3.988 0 01-1.564-.317z"></path>
</svg> </svg>
</span> </span>
<p class="ml-3 font-medium text-white truncate"> <p class="ml-3 font-medium truncate">
<span class="md:hidden"> <span class="md:hidden">
We're writing a book, you can get it <span class="font-bold underline">for free</span> here. We're writing a book, you can get it <span class="font-bold underline">for free</span> here.
</span> </span>
@ -21,7 +21,7 @@
</p> </p>
</div> </div>
<div class="order-3 mt-2 flex-shrink-0 w-full sm:order-2 sm:mt-0 sm:w-auto"> <div class="order-3 mt-2 flex-shrink-0 w-full sm:order-2 sm:mt-0 sm:w-auto">
<a href="https://airtable.com/shr7ymH15hGamMlcY" class="w-full inline-flex space-x-2 justify-center py-2 px-4 border border-gray-300 rounded-md shadow-sm bg-white text-sm font-medium hover:bg-gray-50"> <a href="https://airtable.com/shr7ymH15hGamMlcY" class="w-full inline-flex space-x-2 justify-center py-2 px-4 rounded-md shadow-sm bg-white text-sm font-medium hover:bg-gray-50">
<span class="font-medium "> <span class="font-medium ">
Join the waiting list Join the waiting list
</span> </span>

View file

@ -52,7 +52,6 @@ $title = $title
<body class="flex flex-col min-h-screen font-sans antialiased text-gray-800"> <body class="flex flex-col min-h-screen font-sans antialiased text-gray-800">
{{ $slot }} {{ $slot }}
<footer class="py-12 border-t"> <footer class="py-12 border-t">
<ul class="px-4 space-y-4 text-center text-gray-500"> <ul class="px-4 space-y-4 text-center text-gray-500">
<li> <li>
@ -72,7 +71,6 @@ $title = $title
</ul> </ul>
</footer> </footer>
{{-- banner --}}
<x-banner /> <x-banner />
</body> </body>