This repository has been archived by the owner on May 10, 2024. It is now read-only.
-
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.
Merge pull request #51 from quayside-app/usability
Usability
- Loading branch information
Showing
8 changed files
with
67 additions
and
51 deletions.
There are no files selected for viewing
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,9 +1,18 @@ | ||
export default function Home () { | ||
return ( | ||
<main className='flex flex-wrap w-full'> | ||
<div className='flex w-full flex-wrap '> | ||
Create or Select a project. | ||
<main className='m-10'> | ||
|
||
<div className='flex justify-center w-full text-4xl md:text-7xl font-bold '> | ||
quayside.app | ||
</div> | ||
|
||
<div className='flex justify-center w-full md:text-3xl mt-3 '> | ||
Ignite Collaborative Productivity | ||
</div> | ||
<div className='flex justify-center w-full text-sm md:text-xl mt-10 p-1 bg-neutral-700 rounded-lg'> | ||
Create or select a project to get started... | ||
</div> | ||
|
||
</main> | ||
) | ||
} |
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 |
---|---|---|
|
@@ -83,7 +83,7 @@ export default function ContactUsModal ({ isOpen, handleClose }) { | |
<Input name='email' label='Your Email' placeholder='[email protected]' changeAction={handleInput} value={formData.email} /> | ||
<Input name='subject' label='Subject' placeholder='Subject' changeAction={handleInput} value={formData.subject} /> | ||
<Input name='message' label='Message' placeholder='Your message here...' changeAction={handleInput} value={formData.message} /> | ||
<button type='submit' className='w-full text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 font-medium rounded-lg text-sm px-5 py-2.5 text-center'> | ||
<button type='submit' className='w-full text-white bg-gray-700 hover:bg-blue-800 focus:ring-4 font-medium rounded-lg text-sm px-5 py-2.5 text-center'> | ||
Send | ||
</button> | ||
</form> | ||
|
@@ -92,9 +92,9 @@ export default function ContactUsModal ({ isOpen, handleClose }) { | |
} | ||
|
||
return ( | ||
<div className='fixed inset-0 bg-gray-500 bg-opacity-75'> | ||
<div className='fixed inset-0 bg-gray-500 bg-opacity-75 z-50'> | ||
<div className='fixed w-full p-4'> | ||
<div className='relative rounded-lg shadow bg-gray-900'> | ||
<div className='relative rounded-lg shadow bg-black'> | ||
<button type='button' onClick={handleClose} className='absolute top-3 right-3 rounded-lg w-8 h-8 inline-flex justify-center items-center hover:bg-gray-600'> | ||
<Image src={xIcon} alt='exit' width='10' height='10' /> | ||
</button> | ||
|
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