const express = require('express'); const router = express.Router(); const { getPage } = require('../views/page'); // Main route router.get('/', (req, res) => { res.send(getPage()); }); // About route router.get('/about', (req, res) => { const { getHeader } = require('../views/header'); const { getFooter } = require('../views/footer'); res.send(` About - Design Journal ${getHeader()}

About the Application

This application helps teams maintain structured and collaborative tracking of their design projects. It allows archiving key steps, ensuring traceability of decisions, and simplifying coordination.

History

This project was born from the need to centralize and organize design notes during the development of technical projects. It offers an intuitive environment for documenting architectural decisions and tracking project evolution.

Open Source

This project is open source and available under the MIT License. Contributions are welcome!

Back to Application
${getFooter()} `); }); module.exports = router;