beginning of large-scale redesign

This commit is contained in:
Alec
2021-11-08 18:26:07 -05:00
parent ee931f1034
commit f861339884
99 changed files with 436 additions and 13683 deletions

13
server/routes/router.js Normal file
View File

@@ -0,0 +1,13 @@
const express = require('express');
const router = express.Router();
const path = require('path');
router.get('/', function (request, response) {
response.sendFile(path.join(__dirname, '../../client/views/home.html'));
});
router.get('/create', function (request, response) {
response.sendFile(path.join(__dirname, '../../client/views/create.html'));
});
module.exports = router;