|
1 | 1 | <!DOCTYPE html> |
2 | 2 | <html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> |
3 | 3 | <head> |
| 4 | + <!-- Page Title --> |
| 5 | + <title inertia>{{ config('app.name', 'SIST') }}</title> |
| 6 | + |
| 7 | + <!-- Meta Tags: Accessibility --> |
4 | 8 | <meta charset="utf-8"> |
5 | | - <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 9 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 10 | + |
| 11 | + <!-- Meta Tags: Compatibility --> |
| 12 | + <meta name="robots" content="index, follow"> |
| 13 | + <meta name="apple-mobile-web-app-title" content="SIST" /> |
| 14 | + <link rel="manifest" href="{{ asset('site.webmanifest') }}" /> |
| 15 | + |
| 16 | + <!-- Meta Tags: SEO --> |
| 17 | + <meta name="description" content="SIST (Ship Intelligence & Suspicion Tracker) - A modern AIS monitoring and analysis platform designed to detect suspicious vessel activity, anomalies, and patterns in maritime data."> |
| 18 | + <meta name="keywords" content="sist, maritime-security, maritime-intelligence, maritime-analytics, maritime-surveillance, maritime-monitoring, react, php, shipping, laravel, typescript, spa, geospatial, gis, data-visualization, real-time-data, ais, anomaly-detection, tailwindcss, vite, inertiajs, maritime-data, vessel-tracking"> |
| 19 | + <meta name="author" content="Tristan Budd (https://tristanbudd.com)"> |
| 20 | + |
| 21 | + <!-- Meta Tags: Opengraph --> |
| 22 | + <meta property="og:title" content="SIST - Ship Intelligence & Suspicion Tracker"> |
| 23 | + <meta property="og:description" content="SIST (Ship Intelligence & Suspicion Tracker) - A modern AIS monitoring and analysis platform designed to detect suspicious vessel activity, anomalies, and patterns in maritime data."> |
| 24 | + <meta property="og:image" content="{{ asset('images/sist-opengraph.png') }}"> |
| 25 | + <meta property="og:image:alt" content="SIST - Ship Intelligence & Suspicion Tracker"> |
| 26 | + <meta property="og:url" content="{{ url('/') }}"> |
| 27 | + <meta property="og:type" content="website"> |
| 28 | + <meta property="og:site_name" content="SIST"> |
| 29 | + <meta property="og:locale" content="en_GB"> |
| 30 | + |
| 31 | + <meta property="twitter:card" content="summary_large_image"> |
| 32 | + <meta property="twitter:title" content="SIST - Ship Intelligence & Suspicion Tracker"> |
| 33 | + <meta property="twitter:description" content="SIST (Ship Intelligence & Suspicion Tracker) - A modern AIS monitoring and analysis platform designed to detect suspicious vessel activity, anomalies, and patterns in maritime data."> |
| 34 | + <meta property="twitter:image" content="{{ asset('images/sist-opengraph.png') }}"> |
| 35 | + <meta property="twitter:site" content="@tristanbudd"> |
6 | 36 |
|
7 | | - <title inertia>{{ config('app.name', 'Laravel') }}</title> |
| 37 | + <!-- Favicon --> |
| 38 | + <link rel="icon" type="image/png" href="{{ asset('favicon-96x96.png') }}" sizes="96x96" /> |
| 39 | + <link rel="icon" type="image/svg+xml" href="{{ asset('favicon.svg') }}" /> |
| 40 | + <link rel="shortcut icon" href="{{ asset('favicon.ico') }}" /> |
| 41 | + <link rel="apple-touch-icon" sizes="180x180" href="{{ asset('apple-touch-icon.png') }}" /> |
8 | 42 |
|
9 | 43 | <!-- Fonts --> |
10 | | - <link rel="preconnect" href="https://fonts.bunny.net"> |
11 | | - <link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" /> |
| 44 | + <link rel="preconnect" href="https://fonts.googleapis.com"> |
| 45 | + <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
| 46 | + <link href="https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&family=Geist:wght@100..900&display=swap" rel="stylesheet"> |
12 | 47 |
|
13 | 48 | <!-- Scripts --> |
14 | 49 | @routes |
|
0 commit comments