From da7edd32b79b212f870c45174ef13751e0d94404 Mon Sep 17 00:00:00 2001 From: John Doe Date: Sun, 10 Sep 2023 17:31:19 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=9B=A0=EF=B8=8F=20Implemented=20SectionSu?= =?UTF-8?q?bscribe2=20component=20=E2=9C=A8=20Added=20newsletter=20subscri?= =?UTF-8?q?ption=20section=20=F0=9F=94=8D=20Enhanced=20user=20experience?= =?UTF-8?q?=20=F0=9F=93=A7=20Added=20email=20input=20and=20submit=20button?= =?UTF-8?q?=20=F0=9F=96=BC=EF=B8=8F=20Included=20right=20image=20for=20vis?= =?UTF-8?q?ual=20appeal?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/SectionSubscribe2.tsx | 63 ++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 src/components/SectionSubscribe2.tsx diff --git a/src/components/SectionSubscribe2.tsx b/src/components/SectionSubscribe2.tsx new file mode 100644 index 0000000..5898dda --- /dev/null +++ b/src/components/SectionSubscribe2.tsx @@ -0,0 +1,63 @@ +import React, { FC } from "react"; +import ButtonCircle from "@/shared/ButtonCircle"; +import rightImg from "@/images/SVG-subcribe2.png"; +import Badge from "@/shared/Badge"; +import Input from "@/shared/Input"; +import Image from "next/image"; + +export interface SectionSubscribe2Props { + className?: string; +} + +const SectionSubscribe2: FC = ({ className = "" }) => { + return ( +
+
+

Join our newsletter 🎉

+ + Read and share new perspectives on just about any topic. Everyone’s + welcome. + +
    +
  • + + + Get more discount + +
  • +
  • + + + Get premium magazines + +
  • +
+
+ + + + +
+
+
+ +
+
+ ); +}; + +export default SectionSubscribe2;