diff --git a/CHANGELOG.md b/CHANGELOG.md index d27862e9..8bce85c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), * [#440](https://github.com/shlinkio/shlink-web-client/pull/440) Added hint of what visits come potentially from a bot, in the visits table, when consuming Shlink >=2.7. * [#431](https://github.com/shlinkio/shlink-web-client/pull/431) Added support to filter out visits from potential bots in visits sections, when consuming Shlink >=2.7. * [#430](https://github.com/shlinkio/shlink-web-client/pull/430) Added support to set new and existing short URLs as crawlable, when consuming Shlink >=2.7. +* [#450](https://github.com/shlinkio/shlink-web-client/pull/450) Improved landing page design. ### Changed * [#442](https://github.com/shlinkio/shlink-web-client/pull/442) Visits filtering now goes through the corresponding reducer. diff --git a/src/common/Home.tsx b/src/common/Home.tsx index 882aeb3a..60e5b36d 100644 --- a/src/common/Home.tsx +++ b/src/common/Home.tsx @@ -31,11 +31,12 @@ const Home = ({ servers }: HomeProps) => { {!hasServers && (
-

This application will help you to manage your Shlink servers.

-

To start, please, add your first server.

-

- You still don‘t have a Shlink server? - Learn how to get started. +

This application will help you manage your Shlink servers.

+

+ Add a server + + Learn more +

)} diff --git a/test/common/Home.test.tsx b/test/common/Home.test.tsx index 22a88cda..5fffdf93 100644 --- a/test/common/Home.test.tsx +++ b/test/common/Home.test.tsx @@ -35,7 +35,7 @@ describe('', () => { }, 0, ], - [{}, 3 ], + [{}, 2 ], ])('shows link to create or set-up server only when no servers exist', (servers, expectedParagraphs) => { const wrapped = createComponent({ servers }); const p = wrapped.find('p');