Contact Form Options

Click through both to see how they feel

Option 1: Terminal / CLI

Step-by-step command line style input

contact ~ /work-with-me
$ ./start_conversation.sh
Hey! Let's work together.
Fill in the fields below and I'll get back to you.
>name:

Option 2: Code Editor

Fill in a TypeScript config file

project_request.ts
TypeScript
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Fill out your project details below
 
interface ProjectRequest {
name: string;//
email: string;//
projectType:
budget:
message: string;
}
 
const details = `
`;