From e32399096bb9fb1fbb206354c194de33785ab559 Mon Sep 17 00:00:00 2001 From: khaybarkhaybaryayahud <156494330+khaybarkhaybaryayahud@users.noreply.github.com> Date: Sat, 20 Jan 2024 21:48:28 -0500 Subject: [PATCH] Update index.js --- index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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}`);