Skip to content

Commit dee01e2

Browse files
committed
finalised the readme
1 parent 71bc5a5 commit dee01e2

File tree

4 files changed

+51
-18
lines changed

4 files changed

+51
-18
lines changed

Diff for: README.md

+45-8
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,61 @@
1-
# reza-todd-final
1+
# R.T. Productions Travel Partner Application. [Visit us here](https://github.com/fac31/reza-todd-final)
22

3-
how to get started:
3+
<img src = 'ReadMe.jpeg' alt = 'visual of the home page for the RADAR app.'></img>
4+
5+
## About
6+
7+
Meet RADAR, your newest travel companion. RADAR allows you to search any location in the world and receive up-to-date live information.
8+
9+
The project is aimed at a customer base who are travelling or looking to travel and require a holistic overview of a location so that they can pack accordingly, gain an insight, and be prepared for their visit.
10+
11+
## Full-Stack Project
12+
13+
A final project to display our full-stack learning over the course of our studies with Founders and Coders. HTML, CSS, JavaScript, and Express.
14+
15+
## What we learned
16+
17+
- How to create an appealing user interface.
18+
- Expanding knowledge in front end javascript through text rotation, pop-up information, image carousels.
19+
- Demonstrating information in a dynamic way.
20+
- Using several API's to provide a holistic application.
21+
- Realising a completed application with a functional front & back end.
22+
23+
## If we had more time
24+
25+
- Create a database to store locations people had previously researched.
26+
- Enable a user to be able to compare different locations.
27+
28+
## How to install and use
29+
30+
**How to get started:**
431
`git clone [email protected]:fac31/reza-todd-final.git`
532

6-
navigate to the directory:
33+
**Navigate to the directory:**
734
`cd reza-todd-final`
835

9-
create a `.env` file in the root directory and add the following:
36+
**Create a `.env` file in the root directory and add the following:**
1037

1138
`PORT=your_port_number`
1239

13-
install dependencies
40+
**Install dependencies**
1441
`pnpm install`
1542

16-
run the app
43+
**Run the app**
1744
`pnpm start`
1845

19-
run the app in dev mode
46+
**Run the app in dev mode**
2047
`pnpm dev`
2148

22-
run the tests
49+
**Run the tests**
2350
`pnpm test`
2451

52+
### Authors
53+
54+
<a href = 'https://github.com/RGHANILOO'>
55+
<img src = 'https://avatars.githubusercontent.com/u/26300368?v=4' style="border-radius: 50%; width: 50px;">
56+
</a>
57+
58+
<a href = 'https://github.com/tt01924'>
59+
<img src = 'https://avatars.githubusercontent.com/u/150555214?s=400&u=c30c8b1a0f766863602ec773c8e3bbf149e14c71&v=4' style="border-radius: 50%; width: 50px;">
60+
</a>
61+

Diff for: ReadMe.jpeg

222 KB
Loading

Diff for: public/CSS/city_styles.css

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
1-
html,
1+
/* html,
22
body {
33
overflow: hidden;
44
width: 100%;
55
height: 100%;
66
margin: 0;
77
padding: 0;
8-
}
8+
} */
99

1010
body {
1111
color: rgb(30, 30, 30);
1212
background: rgb(250, 247, 204);
1313
font-family: Arial, Helvetica, sans-serif;
14+
height: 100vh;
1415
}
1516

1617
/* city name object */
@@ -19,7 +20,7 @@ body {
1920
width: 600px;
2021
height: 120px;
2122
border-radius: 20px;
22-
margin: -1150px 70%;
23+
margin: 80% 70%;
2324
position: relative;
2425
box-shadow: 0px 4px 80px rgba(0, 0, 0, 0.4);
2526
}
@@ -46,7 +47,7 @@ h1 {
4647
height: 80px;
4748
border-radius: 50%;
4849
display: grid;
49-
margin: -79% 8%;
50+
margin: 59% 8%;
5051
position: relative;
5152
box-shadow: 0px 4px 100px rgba(0, 0, 0, 0.8);
5253
}
@@ -84,7 +85,7 @@ h1 {
8485
align-items: center;
8586
position: relative;
8687
overflow: hidden;
87-
margin: 990px 30%;
88+
margin: 2590px 30%;
8889
box-shadow: 0px 6px 40px rgba(0, 0, 0, 0.5);
8990
}
9091
p {

Diff for: views/pages/city.ejs

-5
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,6 @@
1919
<p><%= locationData.city %>, <%= locationData.country %></p>
2020
</section>
2121

22-
<section class = "cityCircle">
23-
<p id="weatherText"></p>
24-
</section>
25-
26-
2722
<section class="cityCircle">
2823
<h2>Weather:</h2>
2924
<% formattedWeatherData.forecasts.forEach(forecast => { %>

0 commit comments

Comments
 (0)