diff --git a/index.js b/index.js index 9750f89d..58f96a88 100644 --- a/index.js +++ b/index.js @@ -39,7 +39,9 @@ app.get('/contact', (req, res) => { res.sendFile(path.join(__dirname, 'contact.html')); }); - +app.get('/ad', (req, res) => { + res.sendFile(path.join(__dirname, 'ad.html')); +}); app.listen(port, () => { console.log(`Selenite is running on port ${port}`);