;
+};
+
+export default WeatherForecast;
diff --git a/project-app/components/Weather/plan.md b/project-app/components/Weather/plan.md
new file mode 100644
index 0000000..f37d900
--- /dev/null
+++ b/project-app/components/Weather/plan.md
@@ -0,0 +1,10 @@
+## PLAN
+
+Display information based on user input
+ - Have a start city state name of London
+ - Take city name input
+ - setCityName to whatever the user input is
+ - Have the function add city name to url fetch request
+ - Take data from fetch request and insert into fields
+
+Weather fetch url = http://api.openweathermap.org/data/2.5/forecast?q=London&mode=json&appid=bb7583604ecbfdd9c60127fbda2d5209&units=metric
\ No newline at end of file
diff --git a/project-app/next.config.js b/project-app/next.config.js
index ae88795..3d3bc99 100644
--- a/project-app/next.config.js
+++ b/project-app/next.config.js
@@ -2,6 +2,6 @@
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
-}
+};
-module.exports = nextConfig
+module.exports = nextConfig;
diff --git a/project-app/package.json b/project-app/package.json
index 225d86b..9081fc7 100644
--- a/project-app/package.json
+++ b/project-app/package.json
@@ -29,5 +29,5 @@
},
"overrides": {
"autoprefixer": "10.4.5"
-}
+ }
}
diff --git a/project-app/postcss.config.js b/project-app/postcss.config.js
index 33ad091..12a703d 100644
--- a/project-app/postcss.config.js
+++ b/project-app/postcss.config.js
@@ -3,4 +3,4 @@ module.exports = {
tailwindcss: {},
autoprefixer: {},
},
-}
+};