diff --git a/.gitignore b/.gitignore
index b119212..c90024b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,5 @@
.DS_Store
.vscode/
-node_modules
\ No newline at end of file
+node_modules
+package.json
+package-lock.json
diff --git a/README.md b/README.md
index 76453de..ff10219 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
-# full-stack-project-template
-A Basic jQuery, NodeJS & MongoDB project template
+#
Amani
+The project is a comprehensive mobile application that enables university students to connect, organize activities, and facilitate meet-ups through a user-friendly interface, integrating both frontend and backend technologies for a seamless user experience.
# Setup
```
@@ -9,4 +9,4 @@ $ npm install
# Run the Project
```
$ node server.js
-```
\ No newline at end of file
+```
diff --git a/activity.JSON b/activity.JSON
new file mode 100644
index 0000000..06d29ca
--- /dev/null
+++ b/activity.JSON
@@ -0,0 +1,35 @@
+[
+ {
+ "userId":"0",
+ "universityName":"Sami shamoon",
+ "date": "2024-02-12T00:00:00.000Z",
+ "location":"Rahat",
+ "transportationType":"Car",
+ "capacity":3,
+ "activityType":"fromSchool",
+ "preferredGender":"f",
+ "participants":[]
+ },
+ {
+ "userId":"0",
+ "universityName":"Ben gurion",
+ "date": "2024-02-08T00:00:00.000Z",
+ "location":"Arad",
+ "transportationType":"Bus",
+ "capacity":4,
+ "activityType":"toSchool",
+ "preferredGender":"f",
+ "participants":[]
+ },
+ {
+ "userId":"2",
+ "universityName":"Harvard",
+ "date": "2024-03-10T00:00:00.000Z",
+ "location":"Arad",
+ "transportationType":"Car",
+ "capacity":3,
+ "activityType":"toSchool",
+ "preferredGender":"un",
+ "participants":[]
+ }
+]
\ No newline at end of file
diff --git a/config.js b/config.js
new file mode 100644
index 0000000..62a4386
--- /dev/null
+++ b/config.js
@@ -0,0 +1,3 @@
+const transportations = ["Car","Bus"]
+const currentDate = new Date()
+module.exports ={transportations, currentDate}
\ No newline at end of file
diff --git a/dist/DataModel.js b/dist/DataModel.js
deleted file mode 100644
index 4c3cd0d..0000000
--- a/dist/DataModel.js
+++ /dev/null
@@ -1,4 +0,0 @@
-class DataModel {
- constructor() {
- }
-}
\ No newline at end of file
diff --git a/dist/Renderer.js b/dist/Renderer.js
deleted file mode 100644
index 9d15054..0000000
--- a/dist/Renderer.js
+++ /dev/null
@@ -1,8 +0,0 @@
-class Renderer {
- renderData (data) {
- let source = $("#data-template").html();
- let template = Handlebars.compile(source)
- let html = template({results: results})
- $(".results").empty().append(html)
- }
-}
\ No newline at end of file
diff --git a/dist/index.html b/dist/index.html
index 5251f82..d82d834 100644
--- a/dist/index.html
+++ b/dist/index.html
@@ -1,26 +1,341 @@
-
-