mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
16 lines
385 B
PHP
16 lines
385 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" />
|
|
<meta name="robots" content="noindex">
|
|
<title>Coolify</title>
|
|
@vite('resources/css/app.css')
|
|
</head>
|
|
|
|
<body>
|
|
<h1 class="text-3xl font-bold">Simple Heading</h1>
|
|
</body>
|
|
|
|
</html>
|