summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
Diffstat (limited to 'source')
-rw-r--r--source/index.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/index.ts b/source/index.ts
index f74bb94..72d1185 100644
--- a/source/index.ts
+++ b/source/index.ts
@@ -23,6 +23,7 @@ router.get("/about", c => render(c.response, c.request, "about"))
router.get("/projects", c => render(c.response, c.request, "projects"))
router.get("/contact", c => render(c.response, c.request, "contact"))
router.get("/links", c => render(c.response, c.request, "links"))
+router.get("/services", c => render(c.response, c.request, "services"))
router.get("/licence", async ({ response }) => {
const content = await Deno.readTextFile("LICENCE")