Implement basic initial setup and dashboard with web portal

This commit is contained in:
Logan Cusano
2024-05-12 22:49:39 -04:00
parent 580513997d
commit 15b0650550
11 changed files with 418 additions and 36 deletions

View File

@@ -0,0 +1,11 @@
// dashboardRoutes.js
import express from 'express';
const router = express.Router();
// Define routes
router.get('/', (req, res) => {
res.render('dashboard');
});
export default router;