diff options
Diffstat (limited to 'src/components/Contact.jsx')
-rw-r--r-- | src/components/Contact.jsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/components/Contact.jsx b/src/components/Contact.jsx index a3a8ebe..570c0b5 100644 --- a/src/components/Contact.jsx +++ b/src/components/Contact.jsx @@ -101,6 +101,7 @@ export const Contact = () => { required whileFocus={{ scale: 1.02 }} onChange={handleInputChange} + value={formData.name} /> <motion.input type="email" @@ -109,6 +110,7 @@ export const Contact = () => { required whileFocus={{ scale: 1.02 }} onChange={handleInputChange} + value={formData.email} /> <motion.textarea name="message" @@ -116,6 +118,7 @@ export const Contact = () => { required whileFocus={{ scale: 1.02 }} onChange={handleInputChange} + value={formData.message} /> <motion.button |