Skip to content

Commit f9bab2a

Browse files
Add cool Web X logo
1 parent 726cd93 commit f9bab2a

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

src/assets/images/webx_stripe.svg

Lines changed: 31 additions & 0 deletions
Loading

src/components/FeaturesDiagonal.jsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { useState } from "react";
44
import { InvitationModal } from "./InvitationModal";
55
import featuresdiagonal from "../assets/images/template/featuresdiagonal.jpg";
66
import { RightArrowIcon } from "../assets/icons/RightArrowIcon";
7+
import webx_stripe from "../assets/images/webx_stripe.svg";
78

89
export const FeaturesDiagonal = () => {
910
const [isModalOpen, setIsModalOpen] = useState(false);
@@ -24,6 +25,16 @@ export const FeaturesDiagonal = () => {
2425
></path>
2526
</svg>
2627
</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>
2738
<motion.div
2839
initial={{ opacity: 0 }}
2940
whileInView={{ opacity: 1 }}

0 commit comments

Comments
 (0)