Merge branch 'main' into new

This commit is contained in:
Leo
2024-01-21 04:07:16 +08:00
27 changed files with 1225 additions and 494 deletions

View File

@ -77,4 +77,14 @@ router.get('/contact', function(req, res, next) {
res.render('contact');
});
//api doc
router.get('/api', function(req, res, next) {
res.render('api');
});
//profile page
router.get('/profile', function(req, res, next) {
res.render('profile');
});
module.exports = router;