More commands

This commit is contained in:
2021-12-17 20:02:42 +01:00
parent a24692e3ed
commit 9ea06a16fe
6 changed files with 92 additions and 21 deletions

19
lib/projects/index.ts Normal file
View File

@ -0,0 +1,19 @@
import type { Project } from "./types";
const projectList: Project[] = [
{
name: "homepage",
short: "This website.",
desc: [
"This is my homepage.",
"What you see here should resemble an CLI. If you ever used Linux this should be pretty easy for you.",
"Everyone else: Have no fear. It is pretty simple. You just type in commands and the output is shown here or it does something on the webite.",
"To find out, which commands are available, you can type just 'help'.",
"",
"Have fun!"
],
repo: "https://git.c0ntroller.de/c0ntroller/frontpage"
}
];
export default projectList;

7
lib/projects/types.ts Normal file
View File

@ -0,0 +1,7 @@
export interface Project {
name: string;
desc: string[];
short: string;
more?: string;
repo?: string;
}