-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
64 additions
and
4 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 |
---|---|---|
@@ -1,5 +1,65 @@ | ||
@extends('errors::minimal') | ||
@extends('layout.default', [ | ||
'title' => 'Server error', | ||
]) | ||
|
||
@section('title', __('Server Error')) | ||
@section('code', '500') | ||
@section('message', __('Server Error')) | ||
@section('content') | ||
|
||
<section id="banner" class="banner" role="banner"> | ||
<div class="wrap"> | ||
<h1 class="banner-slogan"> | ||
Our server <br>is confused | ||
</h1> | ||
<p class="banner-intro"> | ||
Our server seems to have a little trouble building this page… <br> | ||
We'll get to the bottom of this asap! | ||
</p> | ||
</div> | ||
</section> | ||
|
||
<div class="section-group pt-0"> | ||
@include('errors.partials.suggestions') | ||
|
||
<section class=section> | ||
<div class="wrap"> | ||
<p class="text-2xl"> | ||
If you have a burning question at this point, <br>just contact us so we can help you out. | ||
</p> | ||
|
||
<p class="text-2xl mt-12 grid-rows gapx-16 gapy-4 | md:mt-16 md:grid-cols justify-start items-start" | ||
style="--cols: auto auto auto"> | ||
<span> | ||
<a class="link link-black" href="mailto:[email protected]">[email protected]</a> | ||
<br> | ||
|
||
<a href="tel:+255764556463" class="hover-style-link text-black font-weight--bold"> | ||
(+255)764 556 463 | ||
</a> | ||
</span> | ||
<a class="group block link link-black" href="https://g.page/kiotani?share" target="_blank" | ||
rel="noreferrer noopener"> | ||
Irabu Company ltd <br> | ||
Kilongawima Street <br>Dar es Salaam | ||
<span class="icon px-2 fill-pink group-hover:opacity-75 transition-fill transition-fast"> | ||
{{ svg('icons/fas-map-marker-alt') }} | ||
</span> | ||
</a> | ||
<span class="text-xs mt-2 leading-loose"> | ||
<a class="link link-black" href="https://github.com/irabu-dev" target="_blank" | ||
rel="noreferrer noopener">Github</a> | ||
<br> | ||
<a class="link link-black" href="https://linkedin.com/company/irabu" target="_blank" | ||
rel="noreferrer noopener">Linkedin</a> | ||
<br> | ||
<a class="link link-black" href="https://www.instagram.com/irabudev" target="_blank" | ||
rel="noreferrer noopener">Instagram</a> | ||
<br> | ||
<a class="link link-black" href="https://twitter.com/intent/tweet?text=Dear+@irabudev+…" | ||
target="_blank" rel="noreferrer noopener">Twitter</a> | ||
</span> | ||
</p> | ||
|
||
</div> | ||
</section> | ||
</div> | ||
|
||
@endsection |