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;