Skip to content

Commit 92bda79

Browse files
committed
style(ui): features update
1 parent 84296cf commit 92bda79

File tree

1 file changed

+18
-14
lines changed

1 file changed

+18
-14
lines changed

inertia/components/landing/Features.svelte

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script lang="ts">
2-
import { ListEnd, FolderKanban, Download } from '@lucide/svelte'
2+
import { CloudOff, FolderSync, Download, ListEnd, Share2 } from '@lucide/svelte'
33
import type { LandingFeature } from '~/lib/types'
44
import FeatureCard from './FeatureCard.svelte'
55
@@ -11,34 +11,38 @@
1111
isAvailable: true,
1212
},
1313
{
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,
1818
},
1919
{
2020
icon: Download,
2121
title: 'Own',
2222
description: 'Allows you to legally buy albums and playlists in one click',
2323
isAvailable: false,
2424
},
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+
},
2537
]
2638
</script>
2739

2840
<section
2941
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"
3143
>
3244
<div class="mx-auto flex max-w-232 flex-col items-center space-y-4 text-center">
3345
<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>
4246
</div>
4347
<div class="mx-auto grid justify-center gap-4 sm:grid-cols-2 md:max-w-5xl md:grid-cols-3">
4448
{#each features as feature (feature.icon)}

0 commit comments

Comments
 (0)