From 267ca172419fafb2d8bf828c8416a4a9f2b4a344 Mon Sep 17 00:00:00 2001 From: Batyr Date: Thu, 6 Feb 2025 18:02:01 +0500 Subject: [PATCH] added subscribe form --- src/components/layout/footer.tsx | 63 ++++++++++++++----- .../shared/forms/subscribe-form.tsx | 58 +++++++++++++++++ 2 files changed, 105 insertions(+), 16 deletions(-) create mode 100644 src/components/shared/forms/subscribe-form.tsx diff --git a/src/components/layout/footer.tsx b/src/components/layout/footer.tsx index 62d1bde..c1b20bd 100644 --- a/src/components/layout/footer.tsx +++ b/src/components/layout/footer.tsx @@ -2,30 +2,61 @@ import { FC } from "react"; import { Container } from "./"; import { Logo } from "../shared"; import { Language, useLangStore } from "@/store/lang"; +import { SubscribeForm } from "../shared/forms/subscribe-form"; +import { Facebook } from "lucide-react"; +import { Link } from "react-router-dom"; export const Footer: FC = () => { const lang = useLangStore((state) => state.lang); return ( -