-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #251 from hydephp/clean-up-html-and-blade
Clean up HTML and Blade files
- Loading branch information
Showing
1 changed file
with
20 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> |