@if ($index === 0.5 || $page->content->count() === 0)
    @isset($livestream)
        <div class="md:flex mt-4 w-full max-w-6xl">
            <div class="flex-1"></div>
            <div class="flex-2 flex justify-center">
                <div class="text-block">
                    <h2>{{ $livestream->name }} Registration Complete</h2>
                    <div class="text-lg font-bold mt-2">{{ $livestream->start_date->timezone('America/Vancouver')->format('l F jS g:ia') }}</div>
                    <p>Thank you for registering for the {{ $livestream->name }} Livestream.</p>
                    <p class="font-bold">You will receive an email with a link to join the event shortly.</p>
                    <p>Visit our <a href="/live">Livestream Listings</a> to view upcoming or previously recorded livestreams.</p>
                </div>
            </div>
        </div>

    @endisset
@endif
