From 6a13d1c0d691916165b8f6245c45ee73349fbcab Mon Sep 17 00:00:00 2001 From: John Doe Date: Wed, 13 Sep 2023 17:05:06 +0300 Subject: [PATCH] Update SectionDowloadApp component * Add a responsive background image * Add two images to the right side of the section * Add a description text --- src/app/(home)/SectionDowloadApp.tsx | 64 ++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 src/app/(home)/SectionDowloadApp.tsx diff --git a/src/app/(home)/SectionDowloadApp.tsx b/src/app/(home)/SectionDowloadApp.tsx new file mode 100644 index 0000000..060e80e --- /dev/null +++ b/src/app/(home)/SectionDowloadApp.tsx @@ -0,0 +1,64 @@ +import BackgroundSection from "@/components/BackgroundSection"; +import React from "react"; +import appSvg1 from "@/images/appSvg1.png"; +import appSvg2 from "@/images/appSvg2.png"; +import appRightImgTree from "@/images/appRightImgTree.png"; +import dowloadAppBGPng from "@/images/dowloadAppBG.png"; +import appRightImg from "@/images/appRightImg.png"; +import btnIosPng from "@/images/btn-ios.png"; +import btnAndroidPng from "@/images/btn-android.png"; +import Image from "next/image"; + +const SectionDowloadApp = () => { + return ( +
+ + dowloadAppPng + +
+ +
+
+ +
+
+ +
+
+ +
+

+ Mobile Apps +

+ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed dapibus + porttitor nisl, sit amet finibus libero. + +
+ + + + + + +
+ + + +
+ +
+
+
+ ); +}; + +export default SectionDowloadApp;