Skip to content

Commit

Permalink
About me updated somewhat and started working on backend
Browse files Browse the repository at this point in the history
  • Loading branch information
philwing100 committed Jun 13, 2024
1 parent 0d89927 commit 81c994c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 13 deletions.
6 changes: 6 additions & 0 deletions backend/myfirstnodefile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
var http = require('http');

http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.end('Hello World!');
}).listen(8080);
Empty file added backend/package.json
Empty file.
13 changes: 0 additions & 13 deletions src/views/AboutMe.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,6 @@
</div>

<div class="section">
<h2>Projects</h2>
<div class="project">
<h3>Project 1: E-commerce Website</h3>
<p>A full-stack e-commerce website built with Vue.js and Node.js, featuring user authentication, product catalog, shopping cart functionality, and secure payment processing.</p>
</div>
<div class="project">
<h3>Project 2: Task Management App</h3>
<p>A task management application developed with Vue.js and Firebase, allowing users to create, update, and prioritize tasks in real-time.</p>
</div>
<div class="project">
<h3>Project 3: Portfolio Website</h3>
<p>My personal portfolio website showcasing my skills, projects, and contact information. Built using Vue.js, HTML, and CSS.</p>
</div>
</div>

<div class="section">
Expand Down

0 comments on commit 81c994c

Please sign in to comment.