Initial commit - all project files via Git LFS

This commit is contained in:
2025-12-29 13:49:47 +05:30
commit e9c52271c6
80 changed files with 2713 additions and 0 deletions

8
routes/contactRoutes.js Normal file
View File

@@ -0,0 +1,8 @@
const express = require('express');
const router = express.Router();
const { saveContact } = require('../controllers/contactController');
// ✅ Use `router.post`, NOT `app.post`
router.post('/', saveContact);
module.exports = router;