const express = require('express')
const app = express()
const port = 3000
const MAIN_PAGE = `
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8" />
<title>home</title>
</head>
<body>
<a href="/new">new page</a>
</body>
</html>
`;
const NEW_PAGE = `
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8" />
<title>new</title>
</head>