Skip to content

Commit cf16ef8

Browse files
Merge branch 'master' of https://github.com/jagnani73/fren
2 parents 4937c7a + c611918 commit cf16ef8

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Images/Fren Technical flow chart.png

-94.9 KB
Binary file not shown.

client/src/components/Index/Hero.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { Link } from "react-router-dom";
44
const Hero = () => {
55
return (
66
<div className="flex flex-wrap w-full h-1/2vh lg:h-screen">
7-
<div className="flex flex-wrap w-full lg:w-1/2 h-full bg-green-900">
7+
<div className="flex flex-wrap w-full lg:w-1/2 h-full bg-blue-900">
88
<Link
99
to="/signup"
1010
className="m-auto text-3xl border-solid border-2 border-white rounded-lg px-8 py-2 text-white"

client/src/components/Login/Hero.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ const Hero = () => {
5151
return (
5252
<div className="w-full h-screen flex flex-wrap">
5353
<ToastContainer />
54-
<div className="hidden lg:block w-1/2 bg-green-600 h-full" />
54+
<div className="hidden lg:block w-1/2 bg-blue-900 h-full" />
5555
<div className="w-full lg:w-1/2 h-full ml-auto flex flex-wrap">
5656
<Formik
5757
initialValues={initialValues}

client/src/components/Signup/Hero.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ const Hero = () => {
6363
};
6464

6565
return (
66-
<div className="w-full lg:w-1/2 h-screen bg-green-900 flex flex-wrap">
66+
<div className="w-full lg:w-1/2 h-screen bg-blue-900 flex flex-wrap">
6767
<ToastContainer />
6868
<Formik
6969
initialValues={initialValues}
@@ -228,7 +228,7 @@ const Hero = () => {
228228
? true
229229
: false
230230
}
231-
className="bg-green-700 w-full text-xl rounded-lg py-3 text-white border-solid border-2 border-white focus:outline-none"
231+
className="bg-green-500 w-full text-xl rounded-lg py-3 text-white border-solid border-2 border-white focus:outline-none"
232232
>
233233
Sign Up !
234234
</button>

client/src/components/Therapist/Hero.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const Hero = () => {
5050
};
5151

5252
return (
53-
<div className="w-full lg:w-1/2 lg:absolute top-0 left-0 bg-green-900 h-full flex flex-wrap">
53+
<div className="w-full lg:w-1/2 lg:absolute top-0 left-0 bg-blue-900 h-full flex flex-wrap">
5454
<div className="flex flex-wrap w-full h-full m-auto">
5555
<ToastContainer />
5656
<div className="flex flex-wrap w-full text-white">

client/src/components/Therapist/User.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const User = (props: UserProps) => {
2020
<div className="w-11/12 lg:w-1/2 flex flex-wrap rounded-tl-lg p-5 m-auto">
2121
<Link
2222
to={`/therapist/${props.id}`}
23-
className="w-full h-full flex flex-wrap bg-green-800 shadow-note text-white cursor-pointer rounded-lg"
23+
className="w-full h-full flex flex-wrap bg-blue-800 shadow-note text-white cursor-pointer rounded-lg"
2424
>
2525
<figure className="w-1/3 rounded-tl-lg">
2626
<img

0 commit comments

Comments
 (0)