mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-11-14 21:40:49 -05:00
move some non-post pages to mdx
This commit is contained in:
52
app/cli/page.mdx
Normal file
52
app/cli/page.mdx
Normal file
@@ -0,0 +1,52 @@
|
||||
import PageTitle from "../../components/PageTitle";
|
||||
import Content from "../../components/Content";
|
||||
import { metadata as defaultMetadata } from "../layout";
|
||||
|
||||
import featuredImage from "./screenshot.png";
|
||||
|
||||
export const metadata = {
|
||||
title: "CLI",
|
||||
description: "AKA, the most useless Node module ever published, in history, by anyone, ever.",
|
||||
openGraph: {
|
||||
...defaultMetadata.openGraph,
|
||||
title: "CLI",
|
||||
images: [featuredImage.src],
|
||||
url: "/cli",
|
||||
},
|
||||
alternates: {
|
||||
...defaultMetadata.alternates,
|
||||
canonical: "/cli",
|
||||
},
|
||||
};
|
||||
|
||||
<PageTitle>🤖 CLI</PageTitle>
|
||||
|
||||
<Content>
|
||||
|
||||
> The [Jake Jarvis](https://jarv.is/) CLI (aka the most useless Node module ever published, in history, by anyone, ever).
|
||||
|
||||

|
||||
|
||||
## Usage
|
||||
|
||||
```sh
|
||||
npx @jakejarvis/cli
|
||||
```
|
||||
|
||||
## Inspired by
|
||||
|
||||
- [@sindresorhus/sindresorhus-cli](https://github.com/sindresorhus/sindresorhus-cli)
|
||||
- [@yg/ygcodes](https://github.com/yg/ygcodes)
|
||||
|
||||
## Built with
|
||||
|
||||
- [ink](https://github.com/vadimdemedes/ink) - React for interactive command-line apps
|
||||
- [meow](https://github.com/sindresorhus/meow) - CLI helper
|
||||
|
||||
[View source on GitHub.](https://github.com/jakejarvis/jakejarvis/tree/main/cli)
|
||||
|
||||
## License
|
||||
|
||||
MIT © [Jake Jarvis](https://jarv.is/), [Sindre Sorhus](https://sindresorhus.com/)
|
||||
|
||||
</Content>
|
||||
Reference in New Issue
Block a user