From 7406b1c27c2696630ed87da11c4e7f0b963c3534 Mon Sep 17 00:00:00 2001 From: Gogi4aaa Date: Sun, 20 Oct 2024 15:16:39 +0300 Subject: [PATCH] added Home page footer --- client/src/components/Home.tsx | 2 ++ client/src/components/layout/Footer.css | 41 +++++++++++++++++++++++ client/src/components/layout/Footer.tsx | 44 +++++++++++++++++++++++++ 3 files changed, 87 insertions(+) create mode 100644 client/src/components/layout/Footer.css create mode 100644 client/src/components/layout/Footer.tsx 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() { +