-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
35954ad
commit 7da797c
Showing
9 changed files
with
164 additions
and
89 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
import React from 'react'; | ||
import { Helmet } from 'react-helmet-async'; | ||
import { RegistrationUpload, MedicalHistoryUpload, RecordsList } from 'src/sections/upload'; | ||
|
||
function DoctorDocumentUploadPage() { | ||
return ( | ||
<> | ||
<Helmet> | ||
<title>Upload Documents</title> | ||
</Helmet> | ||
|
||
<div style={containerStyle}> | ||
<h1 style={headingStyle}>Document Upload Page</h1> | ||
|
||
<section style={sectionStyle}> | ||
<h2 style={subHeadingStyle}>Registration Documents</h2> | ||
<RegistrationUpload /> | ||
</section> | ||
|
||
</div> | ||
</> | ||
); | ||
} | ||
|
||
|
||
const containerStyle = { | ||
maxWidth: '800px', | ||
margin: '0 auto', | ||
padding: '20px', | ||
}; | ||
|
||
const headingStyle = { | ||
fontSize: '24px', | ||
marginBottom: '20px', | ||
}; | ||
|
||
const sectionStyle = { | ||
marginBottom: '40px', | ||
}; | ||
|
||
const subHeadingStyle = { | ||
fontSize: '20px', | ||
marginBottom: '10px', | ||
}; | ||
|
||
export default DoctorDocumentUploadPage; |
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import React from 'react'; | ||
import { Helmet } from 'react-helmet-async'; | ||
import { RecordsList, MedicalHistoryUpload } from 'src/sections/upload'; | ||
|
||
const MedicalHistoryPage = () => { | ||
return ( | ||
<> | ||
<Helmet> | ||
<title>Medical History</title> | ||
</Helmet> | ||
|
||
<div style={containerStyle}> | ||
<h1 style={headingStyle}>Medical History</h1> | ||
|
||
<MedicalHistoryUpload /> | ||
<RecordsList /> | ||
</div> | ||
</> | ||
); | ||
}; | ||
|
||
|
||
const containerStyle = { | ||
maxWidth: '800px', | ||
margin: '0 auto', | ||
padding: '20px', | ||
backgroundColor: '#fff', | ||
boxShadow: '0px 0px 10px rgba(0, 0, 0, 0.1)', | ||
borderRadius: '8px', | ||
}; | ||
|
||
const headingStyle = { | ||
fontSize: '28px', | ||
marginBottom: '20px', | ||
color: '#333', | ||
}; | ||
|
||
export default MedicalHistoryPage; |
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
Oops, something went wrong.