diff --git a/client/src/components/Home.tsx b/client/src/components/Home.tsx
index 8b36b68..06b4659 100644
--- a/client/src/components/Home.tsx
+++ b/client/src/components/Home.tsx
@@ -5,6 +5,7 @@ import CarouselSlider from "./layout/CarouselSlider";
import StoresPage from "@/app/store";
import { useEffect } from "react";
import { Cookies } from "react-cookie"
+import Footer from "./layout/Footer";
function HomePage() {
useEffect(() => {
const cookies = new Cookies();
@@ -20,6 +21,7 @@ function HomePage() {
+
);
}
diff --git a/client/src/components/layout/Footer.css b/client/src/components/layout/Footer.css
new file mode 100644
index 0000000..817bbc9
--- /dev/null
+++ b/client/src/components/layout/Footer.css
@@ -0,0 +1,41 @@
+.footer{
+ background: rgb(153,147,235);
+ min-height: 290px;
+}
+/* .footer-inside{
+ width: 50%;
+ height:100%;
+ margin: 0 auto;
+ display: flex;
+ justify-content:space-between;
+ align-items:center;
+}*/
+.footer-inside {
+ display: flex; /* Aligns the divs horizontally */
+ justify-content: space-between; /* Adds spacing between the columns */
+ padding: 20px;
+ width: 50%;
+ height:100%;
+ margin: 0 auto;
+ align-items:center;
+}
+.footer-section{
+ color: white;
+ height:120px;
+}
+.footer-section h4{
+ margin-bottom: 10px;
+}
+.footer-section ul li a{
+ cursor: pointer;
+}
+@media only screen and (max-width: 1024px) {
+ .footer-inside {
+ width:70%;
+ }
+}
+@media only screen and (max-width: 768px) {
+ .footer-inside {
+ width:100%;
+ }
+}
diff --git a/client/src/components/layout/Footer.tsx b/client/src/components/layout/Footer.tsx
new file mode 100644
index 0000000..a94b6c3
--- /dev/null
+++ b/client/src/components/layout/Footer.tsx
@@ -0,0 +1,44 @@
+import "./Footer.css";
+import Link from "next/link";
+const Footer = () => {
+ return (
+
+
+
+
Buying
+
+ - Link
+ - Link
+ - Link
+ - Link
+
+
+
+
Selling
+
+ - Link
+ - Link
+ - Link
+ - Link
+
+
+
+
+
Help
+
+ - FAQs
+ - Live Chat
+ - Contact Us
+
+
+
+
+ )
+}
+export default Footer;
\ No newline at end of file