diff --git a/app.js b/app.js index e69de29..417806d 100644 --- a/app.js +++ b/app.js @@ -0,0 +1,26 @@ +const express = require('express'); +const path = require('path'); + +const app = express(); + +app.use(express.static('public')); + +app.get('/', (request, response, next) => { + response.sendFile(path.join(__dirname, 'views', 'index.html')); +}); + +app.get('/about', (request, response, next) => { + response.sendFile(path.join(__dirname, 'views', 'about.html')); +}); + +app.get('/works', (request, response, next) => { + response.sendFile(path.join(__dirname, 'views', 'works.html')); +}); + +app.get('/gallery', (request, response, next) => { + response.sendFile(path.join(__dirname, 'views', 'gallery.html')); +}); + +app.listen(3000, () => { + console.log('listening on port 3000!'); +}); \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..e395546 --- /dev/null +++ b/package.json @@ -0,0 +1,5 @@ +{ + "dependencies": { + "express": "^4.21.1" + } +} diff --git a/views/about.html b/views/about.html new file mode 100644 index 0000000..85e48ae --- /dev/null +++ b/views/about.html @@ -0,0 +1,37 @@ + + + +
+ + + +Nandamuri Taraka Rama Rao Jr. (born 20 May 1983), popularly known by the initialism Jr NTR, is an Indian actor + and producer who primarily works in Telugu cinema.[1] He has been featured in Forbes India's Celebrity 100 list + since 2012.[2][3] Referred to in the media as the "Man of Masses", he has starred in 30 films.[4] Rao's + accolades include three Filmfare Awards, two Nandi Awards, two Siima Awards, four CineMAA Awards and one IIFA + Award. + + Grandson of Telugu matinee idol N. T. Rama Rao, who was also the former Chief Minister of the Indian state of + Andhra Pradesh,[5] Rao appeared as a child actor in Brahmarshi Viswamitra (1991) and the National Film + Award-winning Ramayanam (1997). He played his first leading role in Ninnu Choodalani (2001) and achieved his + breakthrough with the coming-of-age film Student No: 1 (2001) and the action drama Aadi (2002). This was + followed by the commercially successful films Simhadri (2003), Rakhi (2006), Yamadonga (2007), Adhurs (2010), + Brindavanam (2010) and Baadshah (2013). + + Following a decline, he made a career comeback with the 2015 action drama Temper and achieved consistent success + with Nannaku Prematho (2016), Janatha Garage (2016), Jai Lava Kusa (2017) and Aravinda Sametha Veera Raghava + (2018). After a four-year hiatus, Rao starred in S. S. Rajamouli's magnum opus RRR (2022), a global phenomenon + which earned him Pan-India fame and universal recognition, becoming one of the highest-grossing Indian films + ever. He has since played the titular role in the action drama Devara: Part 1 (2024). + + In 2017, he hosted the first season of the Telugu language reality TV show Bigg Boss on Star Maa. He also hosted + the fifth season of Evaru Meelo Koteeswarulu in 2021 on Gemini TV.
+ Home + + + \ No newline at end of file diff --git a/views/gallery.html b/views/gallery.html new file mode 100644 index 0000000..17b6908 --- /dev/null +++ b/views/gallery.html @@ -0,0 +1,23 @@ + + + + + + +
+
+
+
+ Home
+
+
\ No newline at end of file
diff --git a/views/index.html b/views/index.html
new file mode 100644
index 0000000..c9c0061
--- /dev/null
+++ b/views/index.html
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+