diff options
| author | Fuwn <[email protected]> | 2026-02-10 01:35:56 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-02-10 01:35:56 -0800 |
| commit | 9f9a60ec8e53e9fa630962c75669a53b66f88ff4 (patch) | |
| tree | ac0f75940ddd2e7df4065ef8fa961479d09526f6 /apps/web | |
| parent | feat: add offline reading row to pricing comparison table (diff) | |
| download | asa.news-9f9a60ec8e53e9fa630962c75669a53b66f88ff4.tar.xz asa.news-9f9a60ec8e53e9fa630962c75669a53b66f88ff4.zip | |
feat: add missing features to marketing feature grid
Add folders & custom feeds, muted phrases, full-text search,
customisable interface, installable PWA, and API & webhooks cards.
Diffstat (limited to 'apps/web')
| -rw-r--r-- | apps/web/app/(marketing)/_components/feature-grid.tsx | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/apps/web/app/(marketing)/_components/feature-grid.tsx b/apps/web/app/(marketing)/_components/feature-grid.tsx index 9f3fdcc..77bf33e 100644 --- a/apps/web/app/(marketing)/_components/feature-grid.tsx +++ b/apps/web/app/(marketing)/_components/feature-grid.tsx @@ -34,6 +34,36 @@ const FEATURES = [ 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: + "three view modes, adjustable density, dark mode, and dozens of display preferences to make it 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 developer plans.", + }, ] export function FeatureGrid() { |