mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-13 04:30:41 -05:00
Refringe
787f796ad7
Worked on: - Mod component templating - Added dark mode styles for homepage - Added benchmarking to the wolt import command - Added MySQL natural sort function Short todo: - Add updated time to mod component - Implement naturalsort function into homepage queries and measure performance difference - Migrate top navigation from old-build
13 lines
570 B
PHP
13 lines
570 B
PHP
<div {{ $attributes->class(['md:flex md:items-center md:justify-between border-b dark:border-b-gray-800 pb-4 mb-6']) }}>
|
|
<div class="min-w-0 flex-1">
|
|
<h2 class="text-2xl font-bold leading-7 text-gray-900 dark:text-gray-200 sm:truncate sm:text-3xl sm:tracking-tight">{{ __($title) }}</h2>
|
|
</div>
|
|
@if (isset($buttonText) && isset($buttonLink))
|
|
<div class="mt-4 flex md:ml-4 md:mt-0">
|
|
<a href="{{ $buttonLink }}">
|
|
<button type="button">{{ __($buttonText) }}</button>
|
|
</a>
|
|
</div>
|
|
@endif
|
|
</div>
|