21 lines
748 B
PHP
21 lines
748 B
PHP
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Mideast Oklahoma Band Directors Association</title>
|
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
|
</head>
|
|
<body class="bg-gray-800 text-white">
|
|
<header>
|
|
<div id="links" class="h-8 content-center">Links go here</div>
|
|
|
|
<div id="name-banner" class="bg-cover bg-bottom w-full h-64 text-center content-center"
|
|
style="background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/meobda-stage.jpeg');">
|
|
<h1 class="text-5xl text-white font-bold">Mideast Oklahoma Band Directors Association</h1>
|
|
</div>
|
|
</header>
|
|
{{ $slot }}
|
|
</body>
|
|
</html>
|