Skip to content

Commit

Permalink
Merge pull request #84 from vst/69-revisit-landing-page-code-and-copy
Browse files Browse the repository at this point in the history
Revisit Landing Page and Copy
  • Loading branch information
vst authored Apr 19, 2024
2 parents 422e1bf + c85687b commit 308bb8d
Show file tree
Hide file tree
Showing 11 changed files with 2,600 additions and 422 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
</div>
</h1>

![Host Patrol Web UI Screenshot](https://github.com/vst/hostpatrol/assets/374793/88e33afd-7b0b-45b6-a542-01c5994af076)

Host Patrol (`hostpatrol`) is a command-line application to retrieve
information from remote hosts. The information is retrieved over SSH
by executing small [scripts]. Then, the information is compiled into
Expand Down
7 changes: 6 additions & 1 deletion website/next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import createMDX from '@next/mdx';

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
Expand All @@ -12,6 +14,9 @@ const nextConfig = {
},
],
},
pageExtensions: ['js', 'jsx', 'md', 'mdx', 'ts', 'tsx'],
};

export default nextConfig;
const withMDX = createMDX({})

export default withMDX(nextConfig);
Loading

0 comments on commit 308bb8d

Please sign in to comment.