mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
30 lines
1.1 KiB
PHP
30 lines
1.1 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Crater - Self Hosted Invoicing Platform</title>
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/favicons/apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicons/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicons/favicon-16x16.png">
|
|
<link rel="manifest" href="/favicons/site.webmanifest">
|
|
<link rel="mask-icon" href="/favicons/safari-pinned-tab.svg" color="#5851d8">
|
|
<link rel="shortcut icon" href="/favicons/favicon.ico">
|
|
<meta name="msapplication-TileColor" content="#ffffff">
|
|
<meta name="msapplication-config" content="/favicons/browserconfig.xml">
|
|
<meta name="theme-color" content="#ffffff">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
@vite
|
|
</head>
|
|
|
|
<body class="h-full overflow-hidden bg-gray-100 font-base">
|
|
|
|
<script type="module">
|
|
window.Crater.start()
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|