@@ -24,7 +24,7 @@ function PersonalInformation({ formData, handleInputChange }) {
24
24
value = { formData . fullName }
25
25
onChange = { ( e ) => handleInputChange ( "fullName" , e . target . value ) }
26
26
className = "border border-[#E5E5E5] bg-[#F4F4F5] rounded-md py-2 px-3 text-sm outline-none text-[#A3A3A3]"
27
- placeholder = "Enter your full name "
27
+ placeholder = "John Doe "
28
28
required
29
29
/>
30
30
</ div >
@@ -40,7 +40,7 @@ function PersonalInformation({ formData, handleInputChange }) {
40
40
value = { formData . email }
41
41
onChange = { ( e ) => handleInputChange ( "email" , e . target . value ) }
42
42
className = "border border-[#E5E5E5] bg-[#F4F4F5] rounded-md py-2 px-3 text-sm outline-none text-[#A3A3A3]"
43
- placeholder = "Enter your email address "
43
+ placeholder = "johndoe@gmail.com "
44
44
required
45
45
/>
46
46
</ div >
@@ -77,7 +77,7 @@ function PersonalInformation({ formData, handleInputChange }) {
77
77
value = { formData . github }
78
78
onChange = { ( e ) => handleInputChange ( "github" , e . target . value ) }
79
79
className = "border border-[#E5E5E5] bg-[#F4F4F5] rounded-md py-2 px-3 text-sm outline-none text-[#A3A3A3]"
80
- placeholder = "Enter your GitHub profile URL "
80
+ placeholder = "https://github.com/johndoe "
81
81
/>
82
82
</ div >
83
83
@@ -92,7 +92,7 @@ function PersonalInformation({ formData, handleInputChange }) {
92
92
value = { formData . project }
93
93
onChange = { ( e ) => handleInputChange ( "project" , e . target . value ) }
94
94
className = "border border-[#E5E5E5] bg-[#F4F4F5] rounded-md py-2 px-3 text-sm outline-none text-[#A3A3A3]"
95
- placeholder = "Enter project link "
95
+ placeholder = "https://johndoe.github.io/my- project"
96
96
/>
97
97
</ div >
98
98
@@ -110,7 +110,7 @@ function PersonalInformation({ formData, handleInputChange }) {
110
110
value = { formData . linkedIn }
111
111
onChange = { ( e ) => handleInputChange ( "linkedIn" , e . target . value ) }
112
112
className = "border border-[#E5E5E5] bg-[#F4F4F5] rounded-md py-2 px-3 text-sm outline-none text-[#A3A3A3]"
113
- placeholder = "Enter your LinkedIn profile URL "
113
+ placeholder = "https://www.linkedin.com/in/johndoe "
114
114
/>
115
115
</ div >
116
116
</ div >
0 commit comments