|
3 | 3 | import Button from '../components/Button.svelte'; |
4 | 4 | import { versionLabel } from '../version.js'; |
5 | 5 | import { t } from '../stores/i18n.svelte.js'; |
| 6 | + import { IconClock } from '@tabler/icons-svelte-runes'; |
6 | 7 |
|
7 | 8 | let { version = versionLabel } = $props(); |
8 | 9 | </script> |
|
35 | 36 | </div> |
36 | 37 | </section> |
37 | 38 |
|
38 | | - <!-- Features Section --> |
39 | | - <section> |
40 | | - <h2 class="text-2xl font-semibold mb-6" style="color: var(--ds-text);">{t('about.keyFeatures')}</h2> |
41 | | - <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"> |
42 | | - <div class="p-6 rounded border" style="border-color: var(--ds-border); background-color: var(--ds-surface-raised);"> |
43 | | - <div class="flex items-center gap-3 mb-4"> |
44 | | - <div class="p-2 rounded" style="background-color: var(--ds-interactive-subtle);"> |
45 | | - <Users class="w-5 h-5" style="color: var(--ds-interactive);" /> |
46 | | - </div> |
47 | | - <h3 class="font-semibold" style="color: var(--ds-text);">{t('about.projectManagement')}</h3> |
48 | | - </div> |
49 | | - <p class="text-sm" style="color: var(--ds-text-subtle);"> |
50 | | - {t('about.projectManagementDesc')} |
51 | | - </p> |
52 | | - </div> |
53 | | - |
54 | | - <div class="p-6 rounded border" style="border-color: var(--ds-border); background-color: var(--ds-surface-raised);"> |
55 | | - <div class="flex items-center gap-3 mb-4"> |
56 | | - <div class="p-2 rounded" style="background-color: var(--ds-interactive-subtle);"> |
57 | | - <Zap class="w-5 h-5" style="color: var(--ds-interactive);" /> |
58 | | - </div> |
59 | | - <h3 class="font-semibold" style="color: var(--ds-text);">{t('about.testManagement')}</h3> |
60 | | - </div> |
61 | | - <p class="text-sm" style="color: var(--ds-text-subtle);"> |
62 | | - {t('about.testManagementDesc')} |
63 | | - </p> |
64 | | - </div> |
65 | | - |
66 | | - <div class="p-6 rounded border" style="border-color: var(--ds-border); background-color: var(--ds-surface-raised);"> |
67 | | - <div class="flex items-center gap-3 mb-4"> |
68 | | - <div class="p-2 rounded" style="background-color: var(--ds-interactive-subtle);"> |
69 | | - <Heart class="w-5 h-5" style="color: var(--ds-interactive);" /> |
70 | | - </div> |
71 | | - <h3 class="font-semibold" style="color: var(--ds-text);">{t('about.timeTracking')}</h3> |
72 | | - </div> |
73 | | - <p class="text-sm" style="color: var(--ds-text-subtle);"> |
74 | | - {t('about.timeTrackingDesc')} |
75 | | - </p> |
76 | | - </div> |
77 | | - </div> |
78 | | - </section> |
79 | | - |
80 | 39 | <!-- Notable Libraries --> |
81 | 40 | <section> |
82 | 41 | <h2 class="text-2xl font-semibold mb-6" style="color: var(--ds-text);">{t('about.builtWith')}</h2> |
|
0 commit comments