diff options
author | sotech117 <michael_foiani@brown.edu> | 2025-09-23 01:46:55 -0400 |
---|---|---|
committer | sotech117 <michael_foiani@brown.edu> | 2025-09-23 01:46:55 -0400 |
commit | 3a712982307391ae1196f50e252cb37ed5f67ccb (patch) | |
tree | 279aa2d97198a08aef2eb1c80bc5008763eb98da /src/app/api/route.ts | |
parent | c5547dc1ba827a4256fbe1ed08bda61f8c660815 (diff) |
add hero and get-started page
Diffstat (limited to 'src/app/api/route.ts')
-rw-r--r-- | src/app/api/route.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/app/api/route.ts b/src/app/api/route.ts new file mode 100644 index 0000000..a413bcd --- /dev/null +++ b/src/app/api/route.ts @@ -0,0 +1,3 @@ +export async function GET(request: Request) { + return new Response("Hello, this is the API route!"); +}
\ No newline at end of file |