|
1 | 1 | <script lang="ts"> |
2 | | - import { ListEnd, FolderKanban, Download } from '@lucide/svelte' |
| 2 | + import { CloudOff, FolderSync, Download, ListEnd, Share2 } from '@lucide/svelte' |
3 | 3 | import type { LandingFeature } from '~/lib/types' |
4 | 4 | import FeatureCard from './FeatureCard.svelte' |
5 | 5 |
|
|
11 | 11 | isAvailable: true, |
12 | 12 | }, |
13 | 13 | { |
14 | | - icon: FolderKanban, |
15 | | - title: 'Manage', |
16 | | - description: 'Centralize all your music library from streaming services all in one place', |
17 | | - isAvailable: false, |
| 14 | + icon: CloudOff, |
| 15 | + title: 'Offline First', |
| 16 | + description: 'Everything is store locally in your browser', |
| 17 | + isAvailable: true, |
18 | 18 | }, |
19 | 19 | { |
20 | 20 | icon: Download, |
21 | 21 | title: 'Own', |
22 | 22 | description: 'Allows you to legally buy albums and playlists in one click', |
23 | 23 | isAvailable: false, |
24 | 24 | }, |
| 25 | + { |
| 26 | + icon: FolderSync, |
| 27 | + title: 'Sync', |
| 28 | + description: 'Synchronize your list to multiple devices', |
| 29 | + isAvailable: false, |
| 30 | + }, |
| 31 | + { |
| 32 | + icon: Share2, |
| 33 | + title: 'Community', |
| 34 | + description: 'Share your list with your friends', |
| 35 | + isAvailable: false, |
| 36 | + }, |
25 | 37 | ] |
26 | 38 | </script> |
27 | 39 |
|
28 | 40 | <section |
29 | 41 | id="features" |
30 | | - class="container space-y-6 py-8 md:py-12 lg:pt-0 lg:py-24 dark:bg-transparent" |
| 42 | + class="container space-y-6 py-8 md:py-12 lg:pt-0 lg:py-12 dark:bg-transparent" |
31 | 43 | > |
32 | 44 | <div class="mx-auto flex max-w-232 flex-col items-center space-y-4 text-center"> |
33 | 45 | <h2 class="font-heading text-3xl leading-[1.1] sm:text-3xl md:text-6xl">Features</h2> |
34 | | - <p |
35 | | - class="balance-text text-muted-foreground max-w-[85%] leading-normal sm:text-lg sm:leading-7" |
36 | | - > |
37 | | - The philosophy of this project started from a desire to have more control and freedom on my |
38 | | - music and be less dependant of music streaming service. So if tomorrow the one you use doesn't |
39 | | - exist anymore, you are have control over your music library. It also aim to help you own your |
40 | | - music back and supports artists by legally buy your favorite music in one click. |
41 | | - </p> |
42 | 46 | </div> |
43 | 47 | <div class="mx-auto grid justify-center gap-4 sm:grid-cols-2 md:max-w-5xl md:grid-cols-3"> |
44 | 48 | {#each features as feature (feature.icon)} |
|
0 commit comments