schneespur/modules/example/resources/views/widgets/example-card.blade.php
Michael 2c63440ed8 Revert: move code back to project root from schneespur/ subdirectory
- Reverts the schneespur/ subdirectory restructure (b8e426b)
- Restores package.json and vite.config.js (needed for npm build, were
  removed in an earlier cleanup before the restructure)
- Updates public/build/ assets with current Vite output (new content hashes)
2026-05-17 18:24:26 +00:00

13 lines
698 B
PHP

<div class="bg-white overflow-hidden shadow-sm sm:rounded-lg p-6">
<div class="flex items-center space-x-3">
<div class="flex-shrink-0">
<svg class="h-8 w-8 text-green-500" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 12.75 11.25 15 15 9.75M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z" />
</svg>
</div>
<div>
<h3 class="text-sm font-medium text-gray-900">Example Module Active</h3>
<p class="text-xs text-gray-500">Reference module loaded successfully.</p>
</div>
</div>
</div>