blob: 349b4048b5a542753d32573c7eb6eb24d10a431b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
---
permalink: 404.html
---
@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
|