@@ -3,13 +3,18 @@ import styled from "styled-components";
33import { ReactComponent as CollaborationImg } from "./../FeaturesSection/Collaborate/images/collab4-colorMode.svg" ;
44import { useInView } from "react-intersection-observer" ;
55import { useState } from "react" ;
6+ import conversationImage from "./images/conversation.png" ;
7+ import componentGif from "./images/components.gif" ;
8+ import versionHistory from "./images/versionHistory.png" ;
9+ import undoRedo from "./images/undoRedo.png" ;
610
711const CollaborationFeatureWrapper = styled . div `
812
913 display: flex;
10- flex-direction: row ;
14+ flex-direction: column ;
1115 /* background-color: ${ props => props . theme . grey121212ToWhite } ;;
1216 max-width: 90%; */
17+ width: 100%;
1318 justify-content: center;
1419 /* align-items: center; */
1520 padding: 5% 5% 8%;
@@ -57,11 +62,6 @@ const CollaborationFeatureWrapper = styled.div`
5762 max-width: 50%;
5863 }
5964
60- img {
61- opacity: 0;
62- transition: opacity ease-out 0.5s;
63- }
64-
6565 svg {
6666 opacity: 0;
6767 transition: opacity ease-out 0.5s;
@@ -108,13 +108,61 @@ const CollaborationFeatureTeam = () => {
108108 < CollaborationFeatureWrapper >
109109 < div className = "hero-div" >
110110 < div className = "hero-image" ref = { locatorRef } >
111- < CollaborationImg className = { imageInView ? "visible" : "" } alt = "" />
111+ < CollaborationImg className = { imageInView ? "visible" : "" } alt = "" />
112112 </ div >
113113 < div className = "hero-text" >
114114 < h2 > < span > Collaborate with your Team</ span > </ h2 >
115115 < p > Build an iterative design flow with live collaboration that keeps you in the loop whether you are working in the office or remotely.</ p >
116116 </ div >
117117 </ div >
118+ < div className = "hero-div" >
119+ < div className = "hero-text" >
120+ < h2 > < span > Integrated Chat</ span > </ h2 >
121+ < p > Add comments directly on components to give feedback or ask questions. Great for discussing changes without leaving the canvas.</ p >
122+ </ div >
123+ < div className = "hero-image" ref = { locatorRef } >
124+ < img
125+ src = { conversationImage }
126+ alt = "Conversation feature illustration"
127+ />
128+ </ div >
129+ </ div >
130+ < div className = "hero-div" >
131+ < div className = "hero-image" ref = { locatorRef } >
132+ < img
133+ src = { componentGif }
134+ alt = "Conversation feature illustration"
135+ />
136+ </ div >
137+ < div className = "hero-text" >
138+ < h2 > < span > Shared Component Library</ span > </ h2 >
139+ < p > Access a common library of reusable components and patterns. Save time by using or modifying shared elements.</ p >
140+ </ div >
141+ </ div >
142+ < div className = "hero-div" >
143+ < div className = "hero-text" >
144+ < h2 > < span > Version Control & History </ span > </ h2 >
145+ < p > Save different versions of your design and go back anytime. Compare past and present designs to see improvements.</ p >
146+ </ div >
147+ < div className = "hero-image" ref = { locatorRef } >
148+ < img
149+ src = { versionHistory }
150+ alt = "Conversation feature illustration"
151+ />
152+ </ div >
153+ </ div >
154+ < div className = "hero-div" >
155+ < div className = "hero-image" ref = { locatorRef } >
156+ < img
157+ src = { undoRedo }
158+ alt = "Conversation feature illustration"
159+ />
160+ </ div >
161+ < div className = "hero-text" >
162+ < h2 > < span > Undo & Revert Changes </ span > </ h2 >
163+ < p > Made a mistake? No worries — you can easily undo recent actions. Go back to a previous state without losing your progress.</ p >
164+ </ div >
165+ </ div >
118166 </ CollaborationFeatureWrapper >
119167 ) ;
120168} ;
0 commit comments