Files
HeimerdingerLoL/resources/views/components/about/faq/dropdown.blade.php
Rico van Zelst 733e9852ae refactor(faq): update about + faq
- Updated the HTML structure and removed unnecessary meta tags
- Replaced the Laravel blade syntax with standard PHP syntax
- Added appropriate section titles and descriptions for better SEO optimization
- Fixed a typo in the class name "min-h-sceen" to "min-h-screen"
- Removed redundant code related to OpenGraph and Twitter metadata
- Improved readability by using consistent indentation and spacing
2023-12-08 18:14:10 +01:00

15 lines
681 B
PHP

<div class="py-5">
<details class="group">
<summary class="flex justify-between items-center font-medium cursor-pointer list-none">
<span class="text-orange-400">{{$question}}</span>
<span class="transition text-orange-400 group-open:rotate-180">
<svg fill="none" height="24" shape-rendering="geometricPrecision" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" viewBox="0 0 24 24" width="24"><path d="M6 9l6 6 6-6"></path>
</svg>
</span>
</summary>
<p class="text-gray-100 mt-3">
{!! $answer !!}
</p>
</details>
</div>