x
1
2
3
4
5
<div class="bg-white dark:bg-gray-900 border border-gray-200 dark:border-gray-800 rounded-xl overflow-hidden">
<div class="px-5 py-4">
<p class='text-gray-600 dark:text-gray-300'>A simple card with just body content.</p>
</div>
</div>
1
2
3
render(Solrengine::Ui::CardComponent.new) do |c|
c.with_body { "<p class='text-gray-600 dark:text-gray-300'>A simple card with just body content.</p>".html_safe }
end