Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | <script setup lang="ts">
import { HelpCircle, Layers, BookOpen, FileText } from 'lucide-vue-next'
</script>
<template>
<div class="bg-white rounded-2xl p-10 border shadow-sm">
<div class="flex flex-col gap-4 md:flex-row md:items-center md:justify-between mb-8">
<div class="flex items-center gap-4 text-primary">
<HelpCircle :size="28" />
<div>
<h1 class="text-2xl font-bold">{{ $t('HelpView.title') }}</h1>
<p class="text-sm text-gray-500">{{ $t('HelpView.subtitle') }}</p>
</div>
</div>
</div>
<p class="text-gray-600 leading-7 max-w-3xl mb-8">
{{ $t('HelpView.intro') }}
</p>
<div class="grid gap-4 lg:grid-cols-2">
<article class="rounded-3xl border border-slate-200 bg-slate-50 p-6">
<div class="flex items-center gap-3 mb-4 text-primary">
<Layers :size="20" />
<h2 class="text-lg font-semibold">{{ $t('HelpView.troubleshooting.title') }}</h2>
</div>
<p class="text-gray-600 leading-7 mb-4">
{{ $t('HelpView.troubleshooting.description') }}
</p>
<ul class="list-disc list-inside space-y-2 text-gray-600">
<li>{{ $t('HelpView.troubleshooting.item1') }}</li>
<li>{{ $t('HelpView.troubleshooting.item2') }}</li>
</ul>
</article>
<article class="rounded-3xl border border-slate-200 bg-slate-50 p-6">
<div class="flex items-center gap-3 mb-4 text-primary">
<BookOpen :size="20" />
<h2 class="text-lg font-semibold">{{ $t('HelpView.quickHelp.title') }}</h2>
</div>
<p class="text-sm font-semibold text-slate-700 mb-3">{{ $t('HelpView.quickHelp.processTitle') }}</p>
<ol class="list-decimal list-inside space-y-3 text-gray-600">
<li>{{ $t('HelpView.quickHelp.step1') }}</li>
<li>{{ $t('HelpView.quickHelp.step2') }}</li>
<li>{{ $t('HelpView.quickHelp.step3') }}</li>
<li>{{ $t('HelpView.quickHelp.step4') }}</li>
<li>{{ $t('HelpView.quickHelp.step5') }}</li>
</ol>
<div class="mt-6 space-y-4 text-gray-700">
<div>
<h3 class="font-semibold text-base">{{ $t('HelpView.quickHelp.pageDashboardTitle') }}</h3>
<p class="text-gray-600">{{ $t('HelpView.quickHelp.pageDashboard') }}</p>
</div>
<div>
<h3 class="font-semibold text-base">{{ $t('HelpView.quickHelp.pageAppsTitle') }}</h3>
<p class="text-gray-600">{{ $t('HelpView.quickHelp.pageApps') }}</p>
</div>
<div>
<h3 class="font-semibold text-base">{{ $t('HelpView.quickHelp.pageCoursesTitle') }}</h3>
<p class="text-gray-600">{{ $t('HelpView.quickHelp.pageCourses') }}</p>
</div>
<div>
<h3 class="font-semibold text-base">{{ $t('HelpView.quickHelp.pageDeploymentsTitle') }}</h3>
<p class="text-gray-600">{{ $t('HelpView.quickHelp.pageDeployments') }}</p>
</div>
</div>
</article>
<article class="rounded-3xl border border-slate-200 bg-slate-50 p-6">
<div class="flex items-center gap-3 mb-4 text-primary">
<BookOpen :size="20" />
<h2 class="text-lg font-semibold">{{ $t('HelpView.resources.title') }}</h2>
</div>
<p class="text-gray-600 leading-7 mb-4">
{{ $t('HelpView.resources.description') }}
</p>
<ul class="list-disc list-inside space-y-2 text-gray-600">
<li>
<a href="https://github.com/six7-click-n-deploy/frontend" target="_blank" rel="noopener noreferrer" class="text-primary hover:underline">
{{ $t('HelpView.resources.frontendRepo') }}
</a>
</li>
<li>
<a href="https://github.com/six7-click-n-deploy/backend" target="_blank" rel="noopener noreferrer" class="text-primary hover:underline">
{{ $t('HelpView.resources.backendRepo') }}
</a>
</li>
<li>
<a href="https://github.com/six7-click-n-deploy/deployment" target="_blank" rel="noopener noreferrer" class="text-primary hover:underline">
{{ $t('HelpView.resources.deploymentRepo') }}
</a>
</li>
<li>
<a href="https://github.com/six7-click-n-deploy/worker" target="_blank" rel="noopener noreferrer" class="text-primary hover:underline">
{{ $t('HelpView.resources.workerRepo') }}
</a>
</li>
</ul>
</article>
<article class="rounded-3xl border border-slate-200 bg-slate-50 p-6">
<div class="flex items-center gap-3 mb-4 text-primary">
<FileText :size="20" />
<h2 class="text-lg font-semibold">{{ $t('HelpView.docs.title') }}</h2>
</div>
<p class="text-gray-600 leading-7 mb-4">
{{ $t('HelpView.docs.description') }}
</p>
<ul class="list-disc list-inside space-y-3 text-gray-600">
<li>
<a href="https://github.com/six7-click-n-deploy/deployment/blob/main/README.md" target="_blank" rel="noopener noreferrer" class="text-primary hover:underline">
{{ $t('HelpView.docs.linkAdmin') }}
</a>
</li>
<li>
<a href="https://github.com/six7-click-n-deploy/.github/blob/main/docs/technologiestack.md" target="_blank" rel="noopener noreferrer" class="text-primary hover:underline">
{{ $t('HelpView.docs.linkTech') }}
</a>
</li>
<li>
<a href="https://github.com/six7-click-n-deploy/template-app/blob/main/README.md" target="_blank" rel="noopener noreferrer" class="text-primary hover:underline">
{{ $t('HelpView.docs.linkAppDev') }}
</a>
</li>
</ul>
</article>
</div>
</div>
</template> |