diff --git a/app/View/Components/ErrorLayout.php b/app/View/Components/ErrorLayout.php
new file mode 100644
index 000000000..f11ee8eba
--- /dev/null
+++ b/app/View/Components/ErrorLayout.php
@@ -0,0 +1,21 @@
+
-
+
@livewire('navigation-dropdown')
{{ $slot }}
diff --git a/resources/views/layouts/error.blade.php b/resources/views/layouts/error.blade.php
new file mode 100644
index 000000000..54c4184cf
--- /dev/null
+++ b/resources/views/layouts/error.blade.php
@@ -0,0 +1,36 @@
+
+
+
+
+
+ {{ $meta ?? '' }}
+
+ @if (empty($title))
+ {{ config('app.name') }}
+ @else
+ {{ $title . ' - ' . config('app.name') }}
+ @endif
+
+
+
+
+
+
+
+
+
+ @livewireStyles
+
+
+
+
+
+
+
+
+
+ {{ $slot }}
+
+ @livewireScripts
+
+
diff --git a/tailwind.config.js b/tailwind.config.js
index 760df9a57..8799d103c 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -4,20 +4,14 @@ const colors = require('tailwindcss/colors');
module.exports = {
mode: 'jit',
- purge: {
- content: [
- './app/**/*.php',
- './public/**/*.html',
- './resources/**/*.{html,js,jsx,md,php,ts,tsx,twig,vue}'
- ],
- options: {
- defaultExtractor: (content) => content.match(/[\w-/.:]+(? ({
color: theme('colors.orange.500'),