blob: 9fd5700256778c0e6e77b41f1beb0343d70f9720 (
plain)
1
2
3
4
5
6
7
8
9
|
@extends('_layouts.master')
@section('article')
<div class="bg-gray-700 rounded-lg p-6">
<h1 class="text-green-300 text-3xl font-bold">Page not found</h1>
<p>Looks like you've followed a broken link or entered a URL that doesn't exist on this site.</p>
<a href="/"><< Back to the site</a>
</div>
@endsection
|