schneespur/resources/views/admin/help/topics/first-steps.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

20 lines
1.1 KiB
PHP

<div class="bg-white rounded-lg border border-gray-200 p-6">
<h2 class="text-xl font-bold text-gray-900 mb-4">{{ __('help.topic_first_steps') }}</h2>
<div class="prose prose-sm max-w-none text-gray-700 space-y-4">
<h3 class="text-lg font-semibold text-gray-800">{{ __('help.first_steps_company_title') }}</h3>
<p>{{ __('help.first_steps_company_text') }}</p>
<h3 class="text-lg font-semibold text-gray-800">{{ __('help.first_steps_drivers_title') }}</h3>
<p>{{ __('help.first_steps_drivers_text') }}</p>
<h3 class="text-lg font-semibold text-gray-800">{{ __('help.first_steps_customers_title') }}</h3>
<p>{{ __('help.first_steps_customers_text') }}</p>
<h3 class="text-lg font-semibold text-gray-800">{{ __('help.first_steps_owntracks_title') }}</h3>
<p>{{ __('help.first_steps_owntracks_text', ['app_name' => brand()]) }}</p>
<h3 class="text-lg font-semibold text-gray-800">{{ __('help.first_steps_first_job_title') }}</h3>
<p>{{ __('help.first_steps_first_job_text', ['app_name' => brand()]) }}</p>
</div>
</div>