Card changes
This commit is contained in:
parent
61f6e3d4aa
commit
1c0f6d64af
|
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class ClinicInformationPage extends Controller
|
||||
{
|
||||
public function __invoke()
|
||||
{
|
||||
return view('clinic-information');
|
||||
}
|
||||
}
|
||||
|
|
@ -1,25 +1,23 @@
|
|||
<x-layout.app>
|
||||
<div class="w-full max-w-4xl mx-auto space-y-6">
|
||||
<x-card>
|
||||
<x-slot:header>HS / JH / 7th / Jazz Auditions</x-slot:header>
|
||||
<div class="space-y-3">
|
||||
<p>January 12, 2026</p>
|
||||
<p>Wagoner High School</p>
|
||||
<p>Entry fee is $10.00 per entry</p>
|
||||
<p>9th Graders may audition for the Jr. High and/or HS Band. Those auditioning for both bands must pay a
|
||||
$10.00 audition fee for each instrument they audition on for each band. (A 9th grade trumpet player
|
||||
auditioning for the Jr. High and HS band would pay $20.00; a 9th grade sax player auditioning on
|
||||
alto
|
||||
and tenor for the Jr. High and HS band would pay $40.00).</p>
|
||||
<p>9th Graders, auditioning for both Jr. High and HS, who score well enough to be in the HS band will be
|
||||
placed
|
||||
in the HS band.</p>
|
||||
</div>
|
||||
</x-card>
|
||||
<x-card>
|
||||
<x-slot:header>First / Second Year Nominations</x-slot:header>
|
||||
<p>Students are selected by director recommendation. Directors may being up to 9 students for each band, but
|
||||
no more than one drummer or two alto saxes for either. Entry fee is $10.00 and includes lunch.</p>
|
||||
</x-card>
|
||||
</div>
|
||||
<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>January 12, 2026</p>
|
||||
<p>Wagoner High School</p>
|
||||
<p>Entry fee is $10.00 per entry</p>
|
||||
<p>9th Graders may audition for the Jr. High and/or HS Band. Those auditioning for both bands must pay a
|
||||
$10.00 audition fee for each instrument they audition on for each band. (A 9th grade trumpet player
|
||||
auditioning for the Jr. High and HS band would pay $20.00; a 9th grade sax player auditioning on
|
||||
alto
|
||||
and tenor for the Jr. High and HS band would pay $40.00).</p>
|
||||
<p>9th Graders, auditioning for both Jr. High and HS, who score well enough to be in the HS band will be
|
||||
placed
|
||||
in the HS band.</p>
|
||||
</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>
|
||||
<p>Students are selected by director recommendation. Directors may being up to 9 students for each band, but
|
||||
no more than one drummer or two alto saxes for either. Entry fee is $10.00 and includes lunch.</p>
|
||||
</x-card>
|
||||
</x-layout.app>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,3 @@
|
|||
<x-layout.app>
|
||||
|
||||
</x-layout.app>
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
@php use Illuminate\View\ComponentSlot; @endphp
|
||||
@props(['header' => null, 'body' => null])
|
||||
<div {{ $attributes->merge(['class' => 'h-full flex flex-col']) }}>
|
||||
<div {{ $attributes }}>
|
||||
@if($header instanceof ComponentSlot)
|
||||
<div {{ $header->attributes->merge(['class'=>'bg-gray-700 text-white p-3 font-semibold rounded-t-md']) }}>
|
||||
{{ $header }}
|
||||
|
|
|
|||
Loading…
Reference in New Issue