diff --git a/src/App.js b/src/App.js index 20c7c91..cc17c4a 100644 --- a/src/App.js +++ b/src/App.js @@ -6,6 +6,7 @@ import SignUp from "./pages/Signup"; import Login from "./pages/Login"; import NotificationSettings from "./pages/Notification"; import CustomerVoices from "./pages/Contact"; +import Review from "./pages/Review"; const App = () => { return ( @@ -27,6 +28,7 @@ const App = () => { element={} > }> + }> ); diff --git a/src/components/Footer.js b/src/components/Footer.js new file mode 100644 index 0000000..c05a818 --- /dev/null +++ b/src/components/Footer.js @@ -0,0 +1,203 @@ +import React from "react"; +import { Link } from "react-router-dom"; + +const Footer = () => { + return ( + <> + + + ); +}; + +export default Footer; diff --git a/src/pages/Contact.js b/src/pages/Contact.js index 4a7e407..6d8dab6 100644 --- a/src/pages/Contact.js +++ b/src/pages/Contact.js @@ -1,5 +1,6 @@ import React from "react"; import Navbar from "../components/Navbar"; +import Footer from "../components/Footer"; const CustomerVoices = () => { return ( diff --git a/src/pages/Home.js b/src/pages/Home.js index 0991c54..0608705 100644 --- a/src/pages/Home.js +++ b/src/pages/Home.js @@ -1,6 +1,7 @@ import React from "react"; import Navbar from "../components/Navbar"; import { Link } from "react-router-dom"; +import Footer from "../components/Footer"; const Home = () => { return ( @@ -175,6 +176,7 @@ const Home = () => { + ); }; diff --git a/src/pages/Login.js b/src/pages/Login.js index f6ec32b..99d2303 100644 --- a/src/pages/Login.js +++ b/src/pages/Login.js @@ -1,6 +1,7 @@ import React from "react"; import { Link } from "react-router-dom"; import Navbar from "../components/Navbar"; +import Footer from "../components/Footer"; const Login = () => { return ( diff --git a/src/pages/Notification.js b/src/pages/Notification.js index 45ad42d..652e4dc 100644 --- a/src/pages/Notification.js +++ b/src/pages/Notification.js @@ -1,5 +1,6 @@ import React from "react"; import Navbar from "../components/Navbar"; +import Footer from "../components/Footer"; const NotificationSettings = () => { return ( diff --git a/src/pages/QR.js b/src/pages/QR.js index 1941a72..6ffa29f 100644 --- a/src/pages/QR.js +++ b/src/pages/QR.js @@ -1,42 +1,46 @@ import React from "react"; import Navbar from "../components/Navbar"; +import Footer from "../components/Footer"; function QRCodeVerification() { return ( -
- -
-
-

- QR Code Verification -

- Phone with QR codes -
-
-

- - Scan products easily for instant access to all the info you need. - From ingredients to eco impact, make informed choices in seconds. - -

-
- - + <> +
+ +
+
+

+ QR Code Verification +

+ Phone with QR codes
-
-
-
+
+

+ + Scan products easily for instant access to all the info you + need. From ingredients to eco impact, make informed choices in + seconds. + +

+
+ + +
+
+ + + ); } diff --git a/src/pages/Review.js b/src/pages/Review.js index 7830830..98d6eac 100644 --- a/src/pages/Review.js +++ b/src/pages/Review.js @@ -1,5 +1,6 @@ import React from "react"; import Navbar from "../components/Navbar"; +import Footer from "../components/Footer"; const Review = () => { return ( diff --git a/src/pages/Signup.js b/src/pages/Signup.js index e909acf..ddf3025 100644 --- a/src/pages/Signup.js +++ b/src/pages/Signup.js @@ -1,6 +1,7 @@ import React from "react"; import { Link } from "react-router-dom"; import Navbar from "../components/Navbar"; +import Footer from "../components/Footer"; const SignUp = () => { return (