Skip to content

Commit

Permalink
feat(website): revisit "Learn More" section
Browse files Browse the repository at this point in the history
  • Loading branch information
vst committed Apr 19, 2024
1 parent bfe77ad commit f60f187
Showing 1 changed file with 19 additions and 16 deletions.
35 changes: 19 additions & 16 deletions website/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ function Hero() {
<span className="block">Patrol Your Hosts</span>
</h1>

<p className="mt-6 text-lg leading-8 text-gray-600">
Host Patrol is a command-line tool for gathering information about your hosts via SSH. It also offers a Web
application for viewing this information in your browser.
<p className="mt-6 text-balance text-lg leading-8 text-gray-600">
Host Patrol is a command-line tool and a Web interface for collecting and consolidating information about
your hosts via SSH.
</p>

<div className="mt-10 flex items-center gap-x-6">
Expand Down Expand Up @@ -125,30 +125,30 @@ const POINTS = [
name: 'Who is it for?',
description: (
<>
Host Patrol is for sysadmins, devops and hackers who (1) manage multiple hosts on the cloud and/or on their own
infrastructure, (2) need to build a registry of such hosts, but (3) want a simple, hackable and free solution.
Host Patrol is for sysadmins and devops who manage hosts on the cloud and/or their own infrastructure to build a
registry of such hosts, keep track of server access and services, and yet, need a simple and free solution.
</>
),
},
{
name: 'What does it do?',
description: (
<>
Host Patrol collects information about your hosts through SSH and compiles it into a JSON file. It also offers a
hosted and privacy-preserving{' '}
Host Patrol collects information about your hosts through SSH and compiles the report into a JSON file. It also
offers a hosted and privacy-preserving{' '}
<Link href="/report" className="font-semibold text-indigo-500">
Web application
Web-based tool
</Link>{' '}
for conveniently viewing this data in your browser.
for conveniently rendering this report in your browser.
</>
),
},
{
name: 'How does it work?',
description: (
<>
You install the Host Patrol command-line tool on your local machine, prepare a configuration file, and run the
tool with the configuration to generate a JSON file containing information about your hosts.
You install the Host Patrol command-line tool on your local machine, (optionally) prepare a configuration file,
and run the tool to generate the report as a JSON file containing information about your hosts.
</>
),
},
Expand All @@ -169,20 +169,23 @@ const POINTS = [
name: 'What is the status of the project?',
description: (
<>
This project is still in its early stages. It is already helping one team to perform simple audits on their
infrastructure. Please consider{' '}
This project is still in its early stages. Consider{' '}
<a href="https://github.com/vst/hostpatrol" className="font-semibold text-indigo-500">
starring it on GitHub
starring it
</a>{' '}
to show your interest.
and{' '}
<a href="https://github.com/vst/hostpatrol/issues" className="font-semibold text-indigo-500">
creating issues
</a>{' '}
on GitHub to help support its development. It can get only better with your feedback.
</>
),
},
{
name: 'How can you contribute?',
description: (
<>
This project contains Haskell, Shell scripts, Nix and Typescript. It is licensed under the{' '}
This project is built using Haskell, Shell scripts, Nix and Typescript. It is licensed under the{' '}
<a href="https://opensource.org/license/mit" className="font-semibold text-indigo-500">
MIT license
</a>
Expand Down

0 comments on commit f60f187

Please sign in to comment.