Update package-lock.json and package.json to include 'globals' dependency and improve code formatting in various components for better readability.
Some checks failed
Code Analysis (JS/Vue) / analyze (push) Failing after 54s
Some checks failed
Code Analysis (JS/Vue) / analyze (push) Failing after 54s
This commit is contained in:
@@ -14,9 +14,14 @@
|
||||
>
|
||||
<div class="flex items-center mb-4">
|
||||
<div class="w-12 h-12 bg-primary-100 rounded-lg flex items-center justify-center group-hover:bg-primary-600 transition-colors">
|
||||
<User :size="24" class="text-primary-600 group-hover:text-white" />
|
||||
<User
|
||||
:size="24"
|
||||
class="text-primary-600 group-hover:text-white"
|
||||
/>
|
||||
</div>
|
||||
<h2 class="ml-4 text-xl font-semibold text-gray-900">Mein Profil</h2>
|
||||
<h2 class="ml-4 text-xl font-semibold text-gray-900">
|
||||
Mein Profil
|
||||
</h2>
|
||||
</div>
|
||||
<p class="text-gray-600">
|
||||
Persönliche Daten und Passwort verwalten
|
||||
@@ -30,9 +35,14 @@
|
||||
>
|
||||
<div class="flex items-center mb-4">
|
||||
<div class="w-12 h-12 bg-primary-100 rounded-lg flex items-center justify-center group-hover:bg-primary-600 transition-colors">
|
||||
<Users :size="24" class="text-primary-600 group-hover:text-white" />
|
||||
<Users
|
||||
:size="24"
|
||||
class="text-primary-600 group-hover:text-white"
|
||||
/>
|
||||
</div>
|
||||
<h2 class="ml-4 text-xl font-semibold text-gray-900">Mitglieder</h2>
|
||||
<h2 class="ml-4 text-xl font-semibold text-gray-900">
|
||||
Mitglieder
|
||||
</h2>
|
||||
</div>
|
||||
<p class="text-gray-600">
|
||||
Kontaktdaten der Vereinsmitglieder
|
||||
@@ -46,9 +56,14 @@
|
||||
>
|
||||
<div class="flex items-center mb-4">
|
||||
<div class="w-12 h-12 bg-primary-100 rounded-lg flex items-center justify-center group-hover:bg-primary-600 transition-colors">
|
||||
<Newspaper :size="24" class="text-primary-600 group-hover:text-white" />
|
||||
<Newspaper
|
||||
:size="24"
|
||||
class="text-primary-600 group-hover:text-white"
|
||||
/>
|
||||
</div>
|
||||
<h2 class="ml-4 text-xl font-semibold text-gray-900">News</h2>
|
||||
<h2 class="ml-4 text-xl font-semibold text-gray-900">
|
||||
News
|
||||
</h2>
|
||||
</div>
|
||||
<p class="text-gray-600">
|
||||
Neuigkeiten und Ankündigungen
|
||||
@@ -66,19 +81,31 @@
|
||||
</p>
|
||||
<div class="grid sm:grid-cols-2 gap-4">
|
||||
<div class="flex items-start">
|
||||
<Check :size="20" class="text-primary-600 mr-2 mt-0.5" />
|
||||
<Check
|
||||
:size="20"
|
||||
class="text-primary-600 mr-2 mt-0.5"
|
||||
/>
|
||||
<span class="text-gray-700">Zugriff auf Mitgliederliste mit Kontaktdaten</span>
|
||||
</div>
|
||||
<div class="flex items-start">
|
||||
<Check :size="20" class="text-primary-600 mr-2 mt-0.5" />
|
||||
<Check
|
||||
:size="20"
|
||||
class="text-primary-600 mr-2 mt-0.5"
|
||||
/>
|
||||
<span class="text-gray-700">Vereinsnews und Ankündigungen</span>
|
||||
</div>
|
||||
<div class="flex items-start">
|
||||
<Check :size="20" class="text-primary-600 mr-2 mt-0.5" />
|
||||
<Check
|
||||
:size="20"
|
||||
class="text-primary-600 mr-2 mt-0.5"
|
||||
/>
|
||||
<span class="text-gray-700">Profilverwaltung und Passwort ändern</span>
|
||||
</div>
|
||||
<div class="flex items-start">
|
||||
<Check :size="20" class="text-primary-600 mr-2 mt-0.5" />
|
||||
<Check
|
||||
:size="20"
|
||||
class="text-primary-600 mr-2 mt-0.5"
|
||||
/>
|
||||
<span class="text-gray-700">Weitere Funktionen folgen in Kürze</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user