mirror of
https://github.com/archtechx/airwire-demo.git
synced 2025-12-12 00:24:03 +00:00
26 lines
753 B
PHP
26 lines
753 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
|
|
|
|
<title>Vue | Airwire</title>
|
|
|
|
<!-- Fonts -->
|
|
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
|
|
|
|
<style>
|
|
body {
|
|
font-family: 'Inter var', sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="antialiased">
|
|
<div class="relative flex items-top justify-center min-h-screen bg-gray-100 dark:bg-gray-900 py-4 sm:pt-0">
|
|
<div id="app" class="2xl:w-3/4 w-full"></div>
|
|
</div>
|
|
</body>
|
|
|
|
<script src="{{ asset('js/app.js') }}"></script>
|
|
</html>
|