This is some basic information about me.
+diff --git a/app.js b/app.js
index e69de29..1644806 100644
--- a/app.js
+++ b/app.js
@@ -0,0 +1,31 @@
+const express = require('express');
+const path = require('path');
+
+const app = express();
+const PORT = process.env.PORT || 3000;
+
+// Serve static files from the public directory
+app.use(express.static(path.join(__dirname, 'public')));
+
+// Set up routes to serve HTML files
+app.get('/', (req, res) => {
+ res.sendFile(path.join(__dirname, 'views', 'home.html'));
+});
+
+app.get('/about', (req, res) => {
+ res.sendFile(path.join(__dirname, 'views', 'about.html'));
+});
+
+app.get('/work', (req, res) => {
+ res.sendFile(path.join(__dirname, 'views', 'work.html'));
+});
+
+// (Optional) Add route for the photo gallery page
+app.get('/gallery', (req, res) => {
+ res.sendFile(path.join(__dirname, 'views', 'gallery.html'));
+});
+
+// Start the server
+app.listen(PORT, () => {
+ console.log(`Server is running on port ${PORT}`);
+});
\ No newline at end of file
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..8fddf73
--- /dev/null
+++ b/package.json
@@ -0,0 +1,15 @@
+{
+ "name": "lab-express-basic",
+ "version": "1.0.0",
+ "description": "
",
+ "main": "app.js",
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1"
+ },
+ "keywords": [],
+ "author": "",
+ "license": "ISC",
+ "dependencies": {
+ "express": "^4.19.2"
+ }
+}
diff --git a/public/style.css b/public/style.css
new file mode 100644
index 0000000..e69de29
diff --git a/views/about.html b/views/about.html
new file mode 100644
index 0000000..6d2483f
--- /dev/null
+++ b/views/about.html
@@ -0,0 +1,28 @@
+
+
+
This is some basic information about me.
+This is the photo gallery section.
+Welcome to my website! Feel free to explore the pages.
+This is where I showcase some of my work.
+