20 lines
762 B
PHP
20 lines
762 B
PHP
<x-layout.app>
|
|
<x-card class="w-full max-w-4xl mx-auto">
|
|
<x-slot:header>HS / JH / 7th / Jazz Auditions</x-slot:header>
|
|
<div class="space-y-3">
|
|
<p>{{ siteData('concertAuditionDate') }}</p>
|
|
<p>{{ siteData('concertAuditionLocation') }}</p>
|
|
<p>Entry fee is {{ siteData('concertAuditionFee') }} per entry</p>
|
|
@foreach($concertAuditionTextLines as $line)
|
|
<p>{{ $line }}</p>
|
|
@endforeach
|
|
</div>
|
|
</x-card>
|
|
<x-card class="w-full max-w-4xl mx-auto mt-6">
|
|
<x-slot:header>First / Second Year Nominations</x-slot:header>
|
|
@foreach($beginnerAuditionTextLines as $line)
|
|
<p>{{ $line }}</p>
|
|
@endforeach
|
|
</x-card>
|
|
</x-layout.app>
|