Implement instance-wide SPA navigation toggle that enables smooth page transitions with prefetching on hover. Excludes terminal links which require full page lifecycle for WebSocket connections. Adds defensive checks to global-search component for SPA navigation compatibility. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
22 lines
992 B
PHP
22 lines
992 B
PHP
@extends('layouts.base')
|
|
<div class="flex flex-col items-center justify-center h-full">
|
|
<div>
|
|
<p class="font-mono font-semibold text-7xl dark:text-warning">419</p>
|
|
<h1 class="mt-4 font-bold tracking-tight dark:text-white">This page is definitely old, not like you!</h1>
|
|
<p class="text-base leading-7 dark:text-neutral-300 text-black">Sorry, we couldn't find the page you're looking
|
|
for.
|
|
</p>
|
|
<div class="flex items-center mt-10 gap-x-2">
|
|
<a href="{{ url()->previous() }}" {{ wireNavigate() }}>
|
|
<x-forms.button>Go back</x-forms.button>
|
|
</a>
|
|
<a href="{{ route('dashboard') }}" {{ wireNavigate() }}>
|
|
<x-forms.button>Dashboard</x-forms.button>
|
|
</a>
|
|
<a target="_blank" class="text-xs" href="{{ config('constants.urls.contact') }}">Contact
|
|
support
|
|
<x-external-link />
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|