1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
const FEATURES = [
{
title: "keyboard & mobile friendly",
description:
"vim-style keyboard navigation on desktop. fully responsive and touch-friendly on mobile.",
},
{
title: "podcast support",
description:
"subscribe to podcast feeds and listen to episodes with the built-in audio player.",
},
{
title: "highlights & notes",
description:
"highlight passages in articles and attach notes.",
},
{
title: "sharing",
description:
"share articles via public links, optionally with a highlighted excerpt.",
},
{
title: "import & export",
description:
"import your feeds from any reader via opml. pro users can export their full data.",
},
{
title: "real-time updates",
description:
"new entries appear automatically or via notification \u2014 your choice. scroll position is always preserved.",
},
{
title: "offline reading",
description:
"read cached articles without an internet connection. available on pro and developer plans.",
},
{
title: "folders & custom feeds",
description:
"organise feeds into folders and build custom curated collections from multiple sources.",
},
{
title: "muted phrases",
description:
"mute keywords to automatically filter out topics you don\u2019t want to see.",
},
{
title: "full-text search",
description:
"search across titles, summaries, and full article content \u2014 not just headlines.",
},
{
title: "customisable interface",
description:
"view modes, density, dark mode, and more \u2014 tweak every detail until it feels like yours.",
},
{
title: "installable pwa",
description:
"install as a native app on any device. no app store required.",
},
{
title: "api & webhooks",
description:
"programmatic access to your feeds and entries via rest api, with webhook notifications. available on the developer plan.",
},
]
export function FeatureGrid() {
return (
<div className="grid grid-cols-1 gap-4 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4">
{FEATURES.map((feature) => (
<div
key={feature.title}
className="border border-border bg-background-secondary p-4"
>
<h3 className="mb-1 text-text-primary">{feature.title}</h3>
<p className="text-text-secondary">{feature.description}</p>
</div>
))}
</div>
)
}
|