diff --git a/src/components/HomePageHeader.js b/src/components/HomePageHeader.js
index 2d95bc86..cd0209a7 100644
--- a/src/components/HomePageHeader.js
+++ b/src/components/HomePageHeader.js
@@ -32,9 +32,9 @@ export default function HomepageHeader() {
{showMore && (
It's packed full of useful features, to help you build your perfect dashboard.
- Including status checks, keyboard shortcuts, auto-fetched favicon icons and
- font-awesome support, built-in authentication, tons of themes, a UI config
- editor, many display layouts plus loads more.
+ Including status checks, keyboard shortcuts, dynamic widgets, auto-fetched
+ favicon icons and font-awesome support, built-in authentication, tons of themes,
+ an interactive config editor, many display layouts plus loads more.
All the code is free and open source, and everything is thoroughly documented,
you can get support with any questions on GitHub.
diff --git a/src/components/HomepageFeatures.js b/src/components/HomepageFeatures.js
index 414b5f12..7c3b1d24 100644
--- a/src/components/HomepageFeatures.js
+++ b/src/components/HomepageFeatures.js
@@ -15,6 +15,7 @@ import IconThemes from '../../static/icons/features_themes.svg';
import IconUiConfig from '../../static/icons/features_ui-configuration.svg';
import IconLaunching from '../../static/icons/features_launching.svg';
import IconLanguage from '../../static/icons/features_language.svg';
+import IconWidgets from '../../static/icons/features_widgets.svg';
const FeatureList = [
{
@@ -67,6 +68,18 @@ const FeatureList = [
link: '/docs/authentication',
icon: (),
},
+ {
+ title: 'Widgets',
+ description: (
+ <>
+ Display dynamic content from any API-enabled service. Dashy comes bundled with 50+
+ pre-built widgets for self-hosted services, productivity and monitoring.
+ >
+ ),
+ link: '/docs/widgets',
+ icon: (),
+ demo: 'https://i.ibb.co/GFjXVHy/dashy-widgets.png',
+ },
{
title: 'Alternate Views',
description: (
@@ -187,9 +200,9 @@ function Feature({ title, description, icon, demo, index, link }) {
{demo
- ?

- :
Screenshot Coming Soon
- }
+ ?

+ :
Screenshot Coming Soon
+ }
);