Initial Commit

This commit is contained in:
klein panic
2024-10-20 17:49:24 -04:00
commit 36ab4a789e
33 changed files with 8858 additions and 0 deletions

10
routes/about.js Normal file
View File

@@ -0,0 +1,10 @@
const express = require('express');
const router = express.Router();
const path = require('path');
// Serve about.html
router.get('/', (req, res) => {
res.sendFile(path.join(__dirname, '../views/about.html'));
});
module.exports = router;