Merge branch 'main' into new

This commit is contained in:
Leo
2024-01-21 02:37:44 +08:00
17 changed files with 722 additions and 406 deletions

View File

@ -77,10 +77,4 @@ router.get('/contact', function(req, res, next) {
res.render('contact');
});
//404 page
router.get('*', function(req, res, next) {
res.render('404');
});
module.exports = router;