Skip to content

Commit

Permalink
Merge pull request #99 from root-0101/contact
Browse files Browse the repository at this point in the history
updated contact page
  • Loading branch information
Akshatchaube01 authored May 22, 2024
2 parents 25b85ac + 223103d commit c591b50
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/ContactUs.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const Contact = () => {
value={form.name}
onChange={handleChange}
placeholder="What's your good name?"
className='bg-tertiary py-4 px-6 placeholder:text-secondary text-white rounded-lg outline-none border-none font-medium'
className='bg-tertiary py-4 px-6 placeholder:text-secondary text-white rounded-lg outline-none border-none font-medium bg-[#1e1e1e]'
/>
</label>
<label className='flex flex-col'>
Expand All @@ -98,7 +98,7 @@ const Contact = () => {
value={form.email}
onChange={handleChange}
placeholder="What's your web address?"
className='bg-tertiary py-4 px-6 placeholder:text-secondary text-white rounded-lg outline-none border-none font-medium'
className='bg-tertiary py-4 px-6 placeholder:text-secondary text-white rounded-lg outline-none border-none font-medium bg-[#1e1e1e]'
/>
</label>
<label className='flex flex-col'>
Expand All @@ -109,14 +109,14 @@ const Contact = () => {
value={form.message}
onChange={handleChange}
placeholder='What you want to say?'
className='bg-tertiary py-4 px-6 placeholder:text-secondary text-white rounded-lg outline-none border-none font-medium'
className='bg-tertiary py-4 px-6 placeholder:text-secondary text-white rounded-lg outline-none border-none font-medium bg-[#1e1e1e]'
/>
</label>

<label className="flex flex-col">
<button
type='submit'
className='bg-tertiary py-3 px-8 rounded-xl outline-none w-fit text-white font-bold shadow-md shadow-primary bg-cyan-800'
className='bg-tertiary py-3 px-8 rounded-xl outline-none w-fit text-white font-bold shadow-md shadow-primary bg-cyan-800 hover:scale-[1.1]'
>
{loading ? "Sending..." : "Send"}
</button>
Expand Down

0 comments on commit c591b50

Please sign in to comment.