Skip to content

Commit

Permalink
Merge branch 'main' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
shibasarkar authored Oct 4, 2024
2 parents 1ca81d0 + 7e00330 commit c2a23fd
Show file tree
Hide file tree
Showing 7 changed files with 75 additions and 36 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<img src="logo.svg" width="328" alt="" />
</div>

# Medi-Connect (Appointment Booking System)
# Med-Space (Appointment Booking System)

![License](https://img.shields.io/badge/license-MIT-blue.svg)
![React](https://img.shields.io/badge/tech-React.js-blue.svg)
Expand Down
68 changes: 36 additions & 32 deletions client/public/index.html
Original file line number Diff line number Diff line change
@@ -1,46 +1,50 @@
<!DOCTYPE html>
<html lang="en">
<head>
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="No more waiting in long queues!"
name="description"
content="Med-Space: Revolutionizing healthcare appointments. Skip long queues, book your medical consultations quickly and easily. Efficient OPD management for patients and healthcare providers."
/>
<meta name="keywords" content="healthcare, appointments, OPD, queue management, medical consultations, Med-Space" />
<meta name="author" content="Luson Basumatary" />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://www.med-space.com" />
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
<title>Med-Space | Efficient Healthcare Appointments & Queue Management</title>

<meta property="og:type" content="website" />
<meta property="og:url" content="https://med-space.vercel.app" />
<meta property="og:title" content="Med-Space | Efficient Healthcare Appointments" />
<meta property="og:description" content="Skip long queues and book your medical consultations quickly with Med-Space. Revolutionizing OPD management for patients and healthcare providers." />
<meta property="og:image" content="%PUBLIC_URL%/logo.png" />
<meta property="og:image:alt" content="Med-Space Logo" />

<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://med-space.vercel.app" />
<meta property="twitter:title" content="Med-Space | Efficient Healthcare Appointments" />
<meta property="twitter:description" content="Skip long queues and book your medical consultations quickly with Med-Space. Revolutionizing OPD management for patients and healthcare providers." />
<meta property="twitter:image" content="%PUBLIC_URL%/logo.png" />
<meta property="twitter:image:alt" content="Med-Space Logo" />

Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>Medi-Connect</title>
</head>
<body>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Med-Space",
"url": "https://med-space.vercel.app",
"description": "Efficient healthcare appointment booking and queue management system",
"applicationCategory": "HealthApplication",
"operatingSystem": "All"
}
</script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->



</body>
</body>
</html>
2 changes: 1 addition & 1 deletion client/public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"short_name": "Medi Connect",
"short_name": "Med Space",
"name": "No more waiting in long queues!",
"icons": [
{
Expand Down
11 changes: 9 additions & 2 deletions client/public/robots.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# https://www.robotstxt.org/robotstxt.html
# robots.txt for https://med-space.vercel.app/

User-agent: *
Disallow:
Allow: / # Allow crawling of the homepage
Disallow: /* # Disallow crawling of all other pages

# Sitemap declaration (optional)
# Sitemap: https://med-space.vercel.app/sitemap.xml

# End of file
1 change: 1 addition & 0 deletions client/src/modules/OPD/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import Review from './Review';
import TableComponent from './TableComponent';
import PatientDistributionChart from './PatientDistributionChart';
import FloatingIcons from '../common/FloatingIcons';
import '../../styles/Home.css'

const ServiceCard = ({ icon: Icon, title, details }) => (
<>
Expand Down
26 changes: 26 additions & 0 deletions client/src/styles/Home.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,32 @@ body {
.data{
max-width:100%;
}

/* --------- */
/*Scrollbar */
/* --------- */
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 7px !important; /* Force width */
}

/* Track */
::-webkit-scrollbar-track {
background: #e5e2eb !important; /* Force track color */
}

/* Handle */
::-webkit-scrollbar-thumb {
background: #057ef5 !important; /* Force handle color */
border-radius: 12px !important; /* Force handle radius */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #014589 !important; /* Force hover color */
border-radius: 12px !important;
}

/* Hero Section */
.hero-section {
background-image: url('../../public/doctor.png'); /* Replace with actual image URL */
Expand Down
1 change: 1 addition & 0 deletions server/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ const corsOptions = {
"https://console.cron-job.org/",
"https://prodez-ai.netlify.app",
"https://medi-connect-in.netlify.app",
"https://med-space.vercel.app",
"http://localhost:3000",
"http://localhost:3001",
], // Replace with your frontend's URL
Expand Down

0 comments on commit c2a23fd

Please sign in to comment.