diff --git a/src/assets/css/main.css b/src/assets/css/main.css index a47540a..ab64698 100755 --- a/src/assets/css/main.css +++ b/src/assets/css/main.css @@ -3227,6 +3227,54 @@ p { background: linear-gradient(135deg, #d8aaff 0%, #9b2cfa 100%); } +.modern_ui_section{ + margin-top: 100px; +} +.appie-modern-design .icon i { + height: 26px; + width: 26px; + text-align: center; + line-height: 26px; + border-radius: 50%; + background: purple; + color: #fff; + font-size: 14px; + box-shadow: 0px 6px 10px 0px rgba(16, 73, 189, 0.3); +} + +.modern_ui_section .ui_images{ + border-radius: 100%; + background-color: #fff; + width: auto; + height: auto; + padding: 30px 0; +} +.modern_ui_section .right_img{ + left: -60px; + top: -20px; +} +.modern_ui_section .left_img{ + width: 60%; +} +.modern_ui_section .right_img{ + width: 40%; +} +.modern_ui_section .right_img .right_img_one{ + width: 120px; + height: auto; +} +.modern_ui_section .right_img .right_img_two{ + margin-top: -20px !important; +} +.modern_ui_section .right_img .right_img_three{ + left: -20px; +} +@media only screen and (min-width: 0px) and (max-width: 500px) { + .modern_ui_section .right_img{ + left: -30px; + top: -20px; + } +} @media only screen and (min-width: 992px) and (max-width: 1200px) { .traffic-btn { margin-top: 30px; diff --git a/src/components/HomeOne/ServicesHomeOne.js b/src/components/HomeOne/ServicesHomeOne.js index 09e2ebb..f56c663 100644 --- a/src/components/HomeOne/ServicesHomeOne.js +++ b/src/components/HomeOne/ServicesHomeOne.js @@ -3,6 +3,7 @@ import IconOne from '../../assets/images/icon/reward.png'; import IconTwo from '../../assets/images/icon/assign-chores.png'; import IconThree from '../../assets/images/icon/financial-education.png'; import IconFour from '../../assets/images/icon/family-connect.png'; +import Main from '../lnd/LndParts/Design/Main'; function ServiceItem({ icon, title, description, index }) { return ( @@ -51,6 +52,8 @@ function ServicesHomeOne({ className }) { ))} + +
); } diff --git a/src/components/lnd/LndParts/Design/Main.js b/src/components/lnd/LndParts/Design/Main.js index 7e680a3..37d9fbb 100644 --- a/src/components/lnd/LndParts/Design/Main.js +++ b/src/components/lnd/LndParts/Design/Main.js @@ -10,45 +10,68 @@ const Main = ({gredient}) => { <>
{gredient && -
image
} +
+ image +
+ }
-
+
-
-
-

Beautiful design with modern UI

-

- Lorem Ipsum is simply dummy text of the printing and typesetting industry lorem Ipsum has been the - industrys standard dummy text ever since the when an unknown printer took a galley of type and. -

-
-
    -
  • -

    Carefully designed

    -

    Lorem Ipsum is simply dummy text of the printing and type esetting industry lorem Ipsum has.

    -
  • -
  • -

    Seamless Sync

    -

    Simply dummy text of the printing and typesetting inustry lorem Ipsum has Lorem dollar summit.

    -
  • -
  • -

    Access Drive

    -

    Printing and typesetting industry lorem Ipsum has been the industrys standard dummy text of type - setting.

    -
  • -
+
+
+

Beautiful design with
modern UI

+

+ Lorem Ipsum is simply dummy text of the printing and typesetting industry lorem Ipsum has been the + industrys standard dummy text ever since the when an unknown printer took a galley of type and. +

+
+ {/*
    +
  • +

    Carefully designed

    +

    Lorem Ipsum is simply dummy text of the printing and type esetting industry lorem Ipsum has.

    +
  • +
  • +

    Seamless Sync

    +

    Simply dummy text of the printing and typesetting inustry lorem Ipsum has Lorem dollar summit.

    +
  • +
  • +

    Access Drive

    +

    Printing and typesetting industry lorem Ipsum has been the industrys standard dummy text of type + setting.

    +
  • +
*/} +
+ {list?.map(({ icon, header, paragraph }, idx) => ( +
+
+
+ +
+
{header}
+

{paragraph}

+
+
+ ))} +
-
-
- image -
-
- image - image - image -
+
+
+
+ image +
+
+
+ image + image +
+ image +
+
@@ -58,4 +81,24 @@ const Main = ({gredient}) => { ) } -export default Main \ No newline at end of file +export default Main + + + +const list = [ + { + icon: "fal fa-check", + header: "Carefully designed", + paragraph: "Get family access from parents, or create your free account.", + }, + { + icon: "fal fa-check", + header: "Seamless Sync", + paragraph: "Simply dummy text of the printing and typesetting inustry lorem Ipsum has Lorem dollar summit.", + }, + { + icon: "fal fa-check", + header: "Access Drive", + paragraph: "Printing and typesetting industry lorem Ipsum has been the industrys standard dummy text of typesetting.", + }, + ] \ No newline at end of file