Set up framework for my content

remove all nextJS framework stuff, add in logo files, add in a healthcheck API endpoint, navbar component starter.
This commit is contained in:
Nick Bland
2022-04-16 21:19:04 +10:00
parent 9c50ff5b21
commit 0b39026386
12 changed files with 157 additions and 134 deletions
+5
View File
@@ -0,0 +1,5 @@
import type { NextApiRequest, NextApiResponse } from "next";
export default function handler(_req: NextApiRequest, res: NextApiResponse) {
res.status(200).json({statusCode:200, message:"Ok"})
}