File tree Expand file tree Collapse file tree 2 files changed +42
-0
lines changed Expand file tree Collapse file tree 2 files changed +42
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import { useState } from "react";
4
4
import { InvitationModal } from "./InvitationModal" ;
5
5
import featuresdiagonal from "../assets/images/template/featuresdiagonal.jpg" ;
6
6
import { RightArrowIcon } from "../assets/icons/RightArrowIcon" ;
7
+ import webx_stripe from "../assets/images/webx_stripe.svg" ;
7
8
8
9
export const FeaturesDiagonal = ( ) => {
9
10
const [ isModalOpen , setIsModalOpen ] = useState ( false ) ;
@@ -24,6 +25,16 @@ export const FeaturesDiagonal = () => {
24
25
> </ path >
25
26
</ svg >
26
27
</ div >
28
+ < motion . div
29
+ initial = { { opacity : 0 , x : 100 } }
30
+ whileInView = { { opacity : 1 , x : 0 } }
31
+ viewport = { { once : true } }
32
+ transition = { { duration : 1.5 , delay : 0.75 } }
33
+ className = "w-full h-[12vw] relative -mt-[2vw]"
34
+ >
35
+ < img src = { webx_stripe . src } alt = "Web X stripe" className = "absolute top-0 right-0 w-1/2 h-full" />
36
+ { /* <img src={webx_stripe.src} alt="Web X stripe" className="w-1/2 h-full ml-auto" /> */ }
37
+ </ motion . div >
27
38
< motion . div
28
39
initial = { { opacity : 0 } }
29
40
whileInView = { { opacity : 1 } }
You can’t perform that action at this time.
0 commit comments