-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
68 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<script lang="ts"> | ||
export let title: string; | ||
export let description: string; | ||
export let icon: string; | ||
</script> | ||
|
||
<div class="relative pl-16"> | ||
<dt class="text-base font-semibold leading-7 text-gray-900"> | ||
<div | ||
class="absolute left-0 top-0 flex h-10 w-10 items-center justify-center rounded-lg bg-jelly-blue" | ||
> | ||
<svg | ||
class="h-6 w-6 text-white" | ||
fill="none" | ||
viewBox="0 0 24 24" | ||
stroke-width="1.5" | ||
stroke="currentColor" | ||
aria-hidden="true" | ||
> | ||
<path stroke-linecap="round" stroke-linejoin="round" d={icon} /> | ||
</svg> | ||
</div> | ||
{title} | ||
</dt> | ||
<dd class="mt-2 text-base leading-7 text-gray-600"> | ||
{description} | ||
</dd> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// TODO: Move SVG icons to assets! | ||
export let features = [ | ||
{ | ||
title: 'Privacy', | ||
description: "We won't leak your private messages or send them to unauthorized address.", | ||
icon: `M12 16.5V9.75m0 0l3 3m-3-3l-3 3M6.75 19.5a4.5 4.5 0 01-1.41-8.775 5.25 5.25 0 0110.233-2.33 3 3 0 013.758 3.848A3.752 3.752 0 0118 19.5H6.75z` | ||
}, | ||
{ | ||
title: 'Search on our index (soon)', | ||
description: `When you search or query events, we search on our huge event index containing millions | ||
of events indexed there.`, | ||
icon: `M16.023 9.348h4.992v-.001M2.985 19.644v-4.992m0 0h4.992m-4.993 0l3.181 3.183a8.25 8.25 0 0013.803-3.7M4.031 9.865a8.25 8.25 0 0113.803-3.7l3.181 3.182m0-4.991v4.99` | ||
}, | ||
{ | ||
title: 'Backup', | ||
description: `We backup all of your events for you and you can export your events at anytime you | ||
want.`, | ||
icon: `M12 16.5V9.75m0 0l3 3m-3-3l-3 3M6.75 19.5a4.5 4.5 0 01-1.41-8.775 5.25 5.25 0 0110.233-2.33 3 3 0 013.758 3.848A3.752 3.752 0 0118 19.5H6.75z` | ||
}, | ||
{ | ||
title: 'Updates', | ||
description: `That's not all you get. We are actively working and adding new features and services | ||
to the JellyFish, as we just started now. All new services will be available on your | ||
current plan, no need for more sats or updates.`, | ||
icon: `M16.023 9.348h4.992v-.001M2.985 19.644v-4.992m0 0h4.992m-4.993 0l3.181 3.183a8.25 8.25 0 0013.803-3.7M4.031 9.865a8.25 8.25 0 0113.803-3.7l3.181 3.182m0-4.991v4.99` | ||
} | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters