11 lines
503 B
PHP
11 lines
503 B
PHP
@props(['subtitle', 'title', 'highlight' => null])
|
|
|
|
<div class="w-full text-left mb-10 border-l-4 border-neon-lime pl-6 py-2">
|
|
<h2 class="text-neutral-400 text-sm font-bold uppercase tracking-widest mb-1">{{ $subtitle }}</h2>
|
|
<h1 class="font-black text-4xl md:text-5xl text-white uppercase italic">
|
|
{{ $title }}
|
|
@if($highlight)
|
|
<span class="text-transparent bg-clip-text bg-gradient-to-r from-white to-gray-500">{{ $highlight }}</span>
|
|
@endif
|
|
</h1>
|
|
</div> |