diff --git a/.env.example b/.env.example
index 46011f0..9082189 100644
--- a/.env.example
+++ b/.env.example
@@ -1,2 +1,2 @@
-REACT_APP_API_KEY = ""
-REACT_APP_API_URL = "https://newsapi.org/v2/"
\ No newline at end of file
+NEXT_PUBLIC_API_KEY = ""
+NEXT_PUBLIC_API_URL = "https://newsapi.org/v2/"
diff --git a/.gitignore b/.gitignore
index cc964cb..0201ceb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,5 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
-
+.next
# dependencies
/node_modules
/.pnp
diff --git a/README.md b/README.md
index b370586..1f6d738 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@ In this ABlOG Project project we have the following sections done:
## Technologies Used
-This project is mainly based on [React.js](https://reactjs.org/) plus others few libraries listed below:
+This project is mainly based on [Next.js](https://nextjs.org/) plus others few libraries listed below:
- [Tailwind css](https://tailwindcss.com/)
- [redux](https://www.npmjs.com/package/redux)
diff --git a/src/components/layout/Header.jsx b/components/layout/Header.jsx
similarity index 79%
rename from src/components/layout/Header.jsx
rename to components/layout/Header.jsx
index f937e70..568da21 100644
--- a/src/components/layout/Header.jsx
+++ b/components/layout/Header.jsx
@@ -1,15 +1,15 @@
-import { Link } from "react-router-dom";
+import Link from "next/link";
export default function Header() {
return (