-
Notifications
You must be signed in to change notification settings - Fork 262
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
Showing
42 changed files
with
3,472 additions
and
533 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Build site nightly | ||
|
||
on: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
|
||
jobs: | ||
dot-release: | ||
name: dot-release | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: curl | ||
env: | ||
NETLIFY_BUILD_HOOK: ${{ secrets.NETLIFY_BUILD_HOOK }} | ||
uses: wei/curl@v1 | ||
with: | ||
args: -X POST -d '{}' "$NETLIFY_BUILD_HOOK" | ||
|
||
- name: Check response status | ||
run: | | ||
response=$(curl -s -o response.txt -w "%{http_code}" -X POST -d '{}' "$NETLIFY_BUILD_HOOK") | ||
if [ "$response" -ne 200 ]; then | ||
echo "Build trigger failed with status: $response" | ||
cat response.txt | ||
exit 1 | ||
fi |
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,15 @@ | ||
{ | ||
"extends": [ | ||
"development" | ||
], | ||
"hints": { | ||
"compat-api/css": [ | ||
"default", | ||
{ | ||
"ignore": [ | ||
"backdrop-filter" | ||
] | ||
} | ||
] | ||
} | ||
} |
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,133 @@ | ||
body { | ||
background-color: black; | ||
overflow-x: hidden; | ||
overflow-y: hidden; | ||
height: 100vh; | ||
width: 100vw; | ||
margin: 0; | ||
} | ||
|
||
.container { | ||
display: flex; | ||
height: 100%; | ||
width: 100%; | ||
flex-direction: row; | ||
justify-content: right; | ||
align-items: center; | ||
gap: 2rem; | ||
background: #0f0c29; | ||
background: -webkit-linear-gradient(to right, #24243e, #302b63, #0f0c29); | ||
background: linear-gradient(to right, #24243e, #302b63, #0f0c29); | ||
color: white; | ||
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; | ||
|
||
} | ||
|
||
.items { | ||
width: 25vw; | ||
height: 100%; | ||
display: flex; | ||
height: 100vh; | ||
flex-direction: column; | ||
justify-content: space-around; | ||
align-items: center; | ||
z-index: 10; | ||
} | ||
|
||
.item1, | ||
.item2, | ||
.item3 { | ||
display: flex; | ||
flex-direction: column; | ||
width: 50%; | ||
height: 20vh; | ||
background-color: #39365b; | ||
backdrop-filter: blur(20px); | ||
border: 1px solid #332e5e; | ||
align-items: center; | ||
justify-content: center; | ||
border-radius: 5%; | ||
font-weight: bold; | ||
} | ||
|
||
.text1 { | ||
width: 100%; | ||
font-size: 40px; | ||
display: flex; | ||
justify-content: center; | ||
} | ||
.text2 { | ||
width: 50%; | ||
margin-left: 5px; | ||
font-size:20px; | ||
display: flex; | ||
justify-content: center; | ||
} | ||
|
||
.doc { | ||
display: flex; | ||
width: 40vw; | ||
height: 100vh; | ||
justify-content: end; | ||
} | ||
.docimg { | ||
|
||
display: flex; | ||
justify-content: start; | ||
} | ||
.text { | ||
width: 50vw; | ||
padding-right: 50px; | ||
height: 100vh; | ||
color: black; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
gap: 20px; | ||
} | ||
|
||
.head1 { | ||
padding: auto; | ||
color: white; | ||
font-size: 70px; | ||
font-weight: 500; | ||
} | ||
|
||
.head2 { | ||
color: wheat; | ||
font-size: 20px; | ||
font-weight: 500; | ||
} | ||
|
||
.text input { | ||
width: 60%; | ||
background-color: #f5f5f5; | ||
border-radius: 5px; | ||
font-size: 20px; | ||
} | ||
.text input::placeholder{ | ||
text-align: center; | ||
} | ||
.text button { | ||
width: 25%; | ||
height: 50px; | ||
border-radius: 10px; | ||
font-size: 20px; | ||
font: weight 5px; | ||
border-radius: 5px; | ||
background-color: #f5f5f5; | ||
align-items: center; | ||
background: #ADA996; | ||
background: -webkit-linear-gradient(to right, #EAEAEA, #DBDBDB, #F2F2F2, #ADA996); | ||
background: linear-gradient(to right, #EAEAEA, #DBDBDB, #F2F2F2, #ADA996); | ||
} | ||
|
||
.text button:hover { | ||
cursor: pointer; | ||
} | ||
|
||
.input { | ||
display: flex; | ||
flex-direction: row; | ||
gap: 30px; | ||
} |
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,23 @@ | ||
body { | ||
overflow-x: hidden; | ||
overflow-y: hidden; | ||
height: 100vh; | ||
width: 100vw; | ||
margin: 0; | ||
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; | ||
} | ||
|
||
#map { | ||
height: 90%; | ||
width: 100%; | ||
} | ||
|
||
.tag { | ||
height: 10%; | ||
width: 100%; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
font-size: 30px; | ||
font-weight: bold; | ||
} |
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,171 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Customer Agreement - RAPIDOC Healthcare</title> | ||
|
||
<link rel="icon" href="https://cdn-icons-png.flaticon.com/256/2666/2666501.png"> | ||
|
||
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet"> | ||
|
||
<style> | ||
|
||
|
||
body { | ||
font-family: Arial, sans-serif; | ||
line-height: 1.6; | ||
margin: 0; | ||
padding: 0; | ||
background-color: black; | ||
} | ||
|
||
|
||
|
||
#customer-agreement-container { | ||
max-width: 800px; | ||
margin: 30px auto; | ||
padding: 20px; | ||
background: #1c413b; | ||
color: white; | ||
border-radius: 8px; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | ||
|
||
} | ||
|
||
#customer-agreement-header { | ||
text-align: center; | ||
} | ||
|
||
#customer-agreement-title { | ||
color: white; | ||
font-size: 2.5em; | ||
margin-bottom: 10px; | ||
} | ||
|
||
|
||
|
||
#customer-agreement-main { | ||
margin-top: 20px; | ||
} | ||
|
||
|
||
|
||
.section-title { | ||
color: #00d9ffc2; | ||
font-size: 1.5em; | ||
margin-top: 20px; | ||
} | ||
|
||
.section-content, .section-list { | ||
margin: 10px 0; | ||
} | ||
|
||
.section-list { | ||
list-style: none; | ||
padding: 0; | ||
} | ||
|
||
|
||
.list-item { | ||
margin-bottom: 10px; | ||
font-size: 1.1em; | ||
} | ||
|
||
|
||
|
||
footer { | ||
background-color: black; | ||
color: #fff; | ||
padding: 20px 0; | ||
} | ||
footer a { | ||
color: #fff; | ||
text-decoration: none; | ||
} | ||
footer a:hover { | ||
text-decoration: none; | ||
color: gray; | ||
} | ||
h1, h2 { | ||
color: black; | ||
} | ||
</style> | ||
|
||
|
||
</head> | ||
|
||
<body> | ||
|
||
<div class="container" id="customer-agreement-container"> | ||
<header id="customer-agreement-header"> | ||
<h1 id="customer-agreement-title">Customer Agreement</h1> | ||
</header> | ||
<main class="main-content" id="customer-agreement-main"> | ||
<section class="section" id="customer-agreement-introduction"> | ||
<h2 class="section-title" id="introduction-title">Introduction</h2> | ||
<p class="section-content" id="introduction-content">Welcome to RAPIDOC Healthcare Website. This | ||
Customer Agreement outlines the terms and conditions under which you may use our online platform to | ||
access healthcare information and services. By using our website, you agree to comply with and be | ||
bound by the terms of this agreement.</p> | ||
</section> | ||
<section class="section" id="customer-agreement-services"> | ||
<h2 class="section-title" >Services Provided</h2> | ||
<ul class="section-list" > | ||
<li class="list-item"><strong>Information Access:</strong> RAPIDOC provides information about the | ||
nearest hospitals and healthcare facilities, including blood availability in emergencies, OPDs, | ||
and bed availability.</li> | ||
<li class="list-item"><strong>Appointment Booking:</strong> Users can prebook appointments for OPDs | ||
at desired hospitals.</li> | ||
<li class="list-item"><strong>Emergency Services:</strong> Information on emergency services and | ||
blood group availability.</li> | ||
<li class="list-item"><strong>Healthcare Facilities:</strong> Detailed information on healthcare | ||
services provided by various hospitals.</li> | ||
</ul> | ||
</section> | ||
<section class="section" id="customer-agreement-responsibilities"> | ||
<h2 class="section-title" >User Responsibilities</h2> | ||
<ul class="section-list" > | ||
<li class="list-item"><strong>Accuracy of Information:</strong> Users must provide accurate and | ||
up-to-date information when using our services.</li> | ||
<li class="list-item"><strong>Compliance:</strong> Users must comply with all applicable laws and | ||
regulations when using our platform.</li> | ||
<li class="list-item"><strong>Account Security:</strong> Users are responsible for maintaining the | ||
confidentiality of their account information and password.</li> | ||
</ul> | ||
</section> | ||
<section class="section" id="customer-agreement-terms"> | ||
<h2 class="section-title" >Terms of Use</h2> | ||
<ul class="section-list"> | ||
<li class="list-item"><strong>Acceptance of Terms:</strong> By accessing and using our website, you | ||
accept and agree to be bound by the terms of this Customer Agreement.</li> | ||
<li class="list-item"><strong>Modification of Terms:</strong> RAPIDOC reserves the right to modify | ||
these terms at any time. Any changes will be posted on this page, and your continued use of the | ||
website will constitute acceptance of the new terms.</li> | ||
<li class="list-item"><strong>Termination:</strong> RAPIDOC may terminate your access to the website | ||
at any time, without notice, for conduct that it believes violates this agreement or is harmful | ||
to other users of the website, RAPIDOC, or third parties, or for any other reason.</li> | ||
</ul> | ||
</section> | ||
<section class="section" id="customer-agreement-contact"> | ||
<h2 class="section-title" >Contact Information</h2> | ||
<p class="section-content" >For any questions or concerns about this Customer | ||
Agreement, please contact us at [email protected].</p> | ||
</section> | ||
</main> | ||
</div> | ||
<!-- Footer --> | ||
<footer class="text-center mt-5"> | ||
<div class="container"> | ||
<p>© 2024 RapiDoc. All rights reserved.</p> | ||
<ul class="list-inline"> | ||
<li class="list-inline-item"><a href="/index.html">Home</a></li> | ||
<li class="list-inline-item"><a href="/Html-Files/privacy_policy_page.html">Privacy Policy</a></li> | ||
<li class="list-inline-item"><a href="/Html-Files/terms_and_conditions.html">Terms and Conditions</a></li> | ||
</ul> | ||
</div> | ||
</footer> | ||
</body> | ||
|
||
</html> |
Oops, something went wrong.