mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-12 20:20:41 -05:00
Still needs some TLC with profile photos. Continued work on the dark theme on the internal pages. More to come.
14 lines
403 B
PHP
14 lines
403 B
PHP
<x-app-layout>
|
|
<x-slot name="header">
|
|
<h2 class="font-semibold text-xl text-gray-800 dark:text-gray-100 leading-tight">
|
|
{{ __('Dashboard') }}
|
|
</h2>
|
|
</x-slot>
|
|
|
|
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
|
|
<div class="bg-white dark:bg-gray-900 overflow-hidden shadow-xl sm:rounded-lg">
|
|
<x-welcome />
|
|
</div>
|
|
</div>
|
|
</x-app-layout>
|