forked from Chrissiku/decent-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
484 additions
and
394 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,37 @@ | ||
import steps from '../assets/steps.svg' | ||
import steps from "../assets/steps.svg"; | ||
|
||
const HowItWorks = () => { | ||
return ( | ||
<div className='mx-auto w-[75%] mt-[100px]'> | ||
<h2 className='text-center font-semibold text-2xl md:text-3xl mb-3'>How it Works</h2> | ||
<p className='text-center mb-10'>Step-by-step guide on how the platform works</p> | ||
<div className='flex md:flex-col'> | ||
<img className='hidden md:block md:rotate-0' src={steps} alt='Step by step bar'/> | ||
<div className='flex flex-col gap-y-12 gap-x-12 mt-4 md:gap-y-0 md:flex-row'> | ||
<div> | ||
<h4 className='text-teal text-xl'>Connect</h4> | ||
<p>Find a mentor in your desired profession</p> | ||
</div> | ||
<div> | ||
<h4 className='text-teal text-xl'>Book a session</h4> | ||
<p>Schedule a session with your chosen mentor</p> | ||
</div> | ||
<div> | ||
<h4 className='text-teal text-xl'>Confirm and join</h4> | ||
<p>Confirm the session details and join the video call</p> | ||
</div> | ||
</div> | ||
<div className="mx-auto w-[75%] mt-[100px]"> | ||
<h2 className="text-center font-semibold text-2xl md:text-3xl mb-3"> | ||
How it Works | ||
</h2> | ||
<p className="text-center mb-10"> | ||
Step-by-step guide on how the platform works | ||
</p> | ||
<div className="flex md:flex-col"> | ||
<img | ||
className="hidden md:block md:rotate-0" | ||
src={steps} | ||
alt="Step by step bar" | ||
/> | ||
<div className="flex flex-col gap-y-12 gap-x-12 mt-4 md:gap-y-0 md:flex-row"> | ||
<div> | ||
<h4 className="text-teal text-xl">Connect</h4> | ||
<p>Find a therapist in your desired speciality</p> | ||
</div> | ||
<div> | ||
<h4 className="text-teal text-xl">Book a session</h4> | ||
<p>Schedule a session with your chosen therapist</p> | ||
</div> | ||
<div> | ||
<h4 className="text-teal text-xl">Confirm and join</h4> | ||
<p>Confirm the session details and join the video call</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
} | ||
); | ||
}; | ||
|
||
export default HowItWorks | ||
export default HowItWorks; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.