2025-05-06 02:47:26 +00:00
|
|
|
<x-app-layout>
|
|
|
|
|
<x-slot name="header">
|
2025-05-18 09:26:53 +00:00
|
|
|
<div class="flex items-center justify-between">
|
|
|
|
|
<h2 class="font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight">
|
|
|
|
|
{{ __('Submissions') }}
|
|
|
|
|
</h2>
|
|
|
|
|
<button id="resetIntroBtn" class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">
|
2025-05-23 02:19:35 +00:00
|
|
|
<i class="fas fa-question-circle mr-1"></i>Tutorial
|
2025-05-18 09:26:53 +00:00
|
|
|
</button>
|
2025-05-09 14:57:14 +00:00
|
|
|
</div>
|
2025-05-18 09:26:53 +00:00
|
|
|
</x-slot>
|
|
|
|
|
|
|
|
|
|
<div class="py-4"></div>
|
|
|
|
|
|
2025-05-09 14:57:14 +00:00
|
|
|
<div class="py-2">
|
2025-05-06 02:47:26 +00:00
|
|
|
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
|
|
|
|
|
<div class="bg-white dark:bg-gray-800 overflow-hidden shadow-sm sm:rounded-lg pb-12">
|
|
|
|
|
@include('nodejs.submissions.partials.container')
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-05-18 09:26:53 +00:00
|
|
|
</x-app-layout>
|