Skip to content

Commit

Permalink
Merge pull request #251 from hydephp/clean-up-html-and-blade
Browse files Browse the repository at this point in the history
Clean up HTML and Blade files
  • Loading branch information
caendesilva authored Apr 17, 2024
2 parents f3bda1d + b55e859 commit 44f81cd
Showing 1 changed file with 20 additions and 23 deletions.
43 changes: 20 additions & 23 deletions _pages/404.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,34 +18,31 @@
<!-- Error page and illustration by LaravelCollective: https://github.com/LaravelCollective/errors (License MIT) --->

<body class="antialiased font-sans">
<div class="md:flex min-h-screen">
<div class="w-full md:w-1/2 bg-white flex items-center justify-center">
<div class="max-w-sm m-8">
<div class="text-black text-5xl md:text-15xl font-black">
404
<div class="md:flex min-h-screen">
<div class="w-full md:w-1/2 bg-white flex items-center justify-center">
<div class="max-w-sm m-8">
<div class="text-black text-5xl md:text-15xl font-black">
404
</div>

<div class="w-16 h-1 bg-purple-light my-3 md:my-6"></div>

<p class="text-grey-darker text-2xl md:text-3xl font-light mb-8 leading-normal">
Sorry, the page you are looking for could not be found.
</p>

<a href="{{ Routes::get('index') ?? './' }}">
<button class="bg-transparent text-grey-darkest font-bold uppercase tracking-wide py-3 px-6 border-2 border-grey-light hover:border-grey rounded-lg">
Go Home
</button>
</a>
</div>

<div class="w-16 h-1 bg-purple-light my-3 md:my-6"></div>

<p class="text-grey-darker text-2xl md:text-3xl font-light mb-8 leading-normal">
Sorry, the page you are looking for could not be found.
</p>

<a href="{{ Routes::get('index') ?? './' }}">
<button
class="bg-transparent text-grey-darkest font-bold uppercase tracking-wide py-3 px-6 border-2 border-grey-light hover:border-grey rounded-lg">
Go Home
</button>
</a>
</div>

</div>

<div class="relative pb-full md:flex md:pb-0 md:min-h-screen w-full md:w-1/2">
<div style="background-image: url('https://cdn.jsdelivr.net/gh/LaravelCollective/[email protected]/src/publish/svg/404.svg');"
class="absolute pin bg-cover bg-no-repeat md:bg-left lg:bg-center">
<div class="relative pb-full md:flex md:pb-0 md:min-h-screen w-full md:w-1/2">
<div class="absolute pin bg-cover bg-no-repeat md:bg-left lg:bg-center" style="background-image: url('https://cdn.jsdelivr.net/gh/LaravelCollective/[email protected]/src/publish/svg/404.svg');"></div>
</div>
</div>
</div>
</body>
</html>

0 comments on commit 44f81cd

Please sign in to comment.