33 lines
1002 B
PHP
33 lines
1002 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 text-right">
|
|
@foreach($links as $link)
|
|
<span class="px-5">
|
|
<a href="{{ $link['link'] }}">
|
|
{{ $link['name'] }}
|
|
</a>
|
|
</span>
|
|
@endforeach
|
|
</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<br>Band Directors Association</h1>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="p-5">
|
|
{{ $slot }}
|
|
</main>
|
|
|
|
</body>
|
|
</html>
|