Available Sections

Each template has several customizable sections that you can override:

@section('body-class')
    // Controls the main body styling
    'bg-black min-h-screen flex items-center justify-center'
@endsection

@section('container-class')
    // Controls the main container styling
    'max-w-4xl w-full mx-4'
@endsection

@section('title-class')
    // Controls the title styling
    'text-6xl font-bold text-white mb-4'
@endsection

@section('message-class')
    // Controls the message styling
    'text-gray-400 text-xl'
@endsection

@section('countdown-class')
    // Controls the countdown container styling
    'mt-8 p-6 bg-black/50 backdrop-blur-sm rounded-lg'
@endsection

Last updated