16 lines
		
	
	
		
			366 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			366 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% set title = title | default(value="") %}
 | 
						|
{% set description = description | default(value="") %}
 | 
						|
 | 
						|
 | 
						|
  <div class="flex gap-x-4 rounded-xl bg-black/5 p-6 ring-1 ring-inset ring-white/10">
 | 
						|
    <div class="text-base leading-7">
 | 
						|
      <h4 class="font-semibold">{{ title }}</h4>
 | 
						|
      <p class="mt-2 text-lg">{{ description }}
 | 
						|
      </p>
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
 | 
						|
 | 
						|
    
 | 
						|
 
 | 
						|
   |