Skip to content

Commit 6d66afd

Browse files
authored
Merge pull request #176 from deji-ice/feature/improve-seo
Feature/improve seo
2 parents bfd252b + 19fbce7 commit 6d66afd

File tree

4 files changed

+318
-276
lines changed

4 files changed

+318
-276
lines changed

client/public/index.html

+21-22
Original file line numberDiff line numberDiff line change
@@ -5,32 +5,31 @@
55
<link rel="icon" href="%PUBLIC_URL%/favicon.png" />
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
<meta name="theme-color" content="#000000" />
8-
<meta
9-
name="description"
10-
content="Med-Space: Revolutionizing healthcare appointments. Skip long queues, book your medical consultations quickly and easily. Efficient OPD management for patients and healthcare providers."
11-
/>
12-
<meta name="keywords" content="healthcare, appointments, OPD, queue management, medical consultations, Med-Space" />
13-
<meta name="author" content="Luson Basumatary" />
8+
9+
<!-- SEO Metadata -->
10+
<meta name="description" content="Med-Space: No more waiting in long queues. Get fast, reliable access to healthcare services." />
11+
<meta name="keywords" content="healthcare, online healthcare services, no waiting, fast medical services, reliable healthcare, medical appointments" />
1412
<meta name="robots" content="index, follow" />
15-
<link rel="canonical" href="https://www.med-space.com" />
13+
<link rel="canonical" href="https://med-space.vercel.app" />
14+
15+
<!-- Open Graph Metadata for Social Media -->
16+
<meta property="og:title" content="Med-Space - Fast and Reliable Healthcare Services" />
17+
<meta property="og:description" content="No more waiting in long queues. Access healthcare services online with Medi-Connect." />
18+
<meta property="og:image" content="%PUBLIC_URL%/logo.png" />
19+
<meta property="og:url" content="https://med-space.vercel.app" />
20+
<meta property="og:type" content="website" />
21+
22+
<!-- Twitter Card Metadata -->
23+
<meta name="twitter:card" content="summary_large_image" />
24+
<meta name="twitter:title" content="Med-Space - Fast and Reliable Healthcare Services" />
25+
<meta name="twitter:description" content="No more waiting in long queues. Access healthcare services online with Medi-Connect." />
26+
<meta name="twitter:image" content="%PUBLIC_URL%/logo.png" />
27+
28+
<!-- Manifest and Icons -->
1629
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo.png" />
1730
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
18-
<title>Med-Space | Efficient Healthcare Appointments & Queue Management</title>
19-
20-
<meta property="og:type" content="website" />
21-
<meta property="og:url" content="https://med-space.vercel.app" />
22-
<meta property="og:title" content="Med-Space | Efficient Healthcare Appointments" />
23-
<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." />
24-
<meta property="og:image" content="%PUBLIC_URL%/logo.png" />
25-
<meta property="og:image:alt" content="Med-Space Logo" />
31+
<title>Med-Space | Fast & Reliable Healthcare Services Online</title>
2632

27-
<meta property="twitter:card" content="summary_large_image" />
28-
<meta property="twitter:url" content="https://med-space.vercel.app" />
29-
<meta property="twitter:title" content="Med-Space | Efficient Healthcare Appointments" />
30-
<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." />
31-
<meta property="twitter:image" content="%PUBLIC_URL%/logo.png" />
32-
<meta property="twitter:image:alt" content="Med-Space Logo" />
33-
3433
<script type="application/ld+json">
3534
{
3635
"@context": "https://schema.org",

client/public/robots.txt

+11-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1-
# robots.txt for https://med-space.vercel.app/
2-
1+
# Allow all bots to crawl important pages
32
User-agent: *
4-
Allow: / # Allow crawling of the homepage
5-
Allow: /about
6-
Disallow: /* # Disallow crawling of all other pages
3+
Allow: / # Allow crawling of the homepage
4+
Allow: /about # Allow crawling of the about page
5+
Allow: /registerOPD # Allow crawling of the registration form
6+
Allow: /success # Allow crawling of the success page
7+
Allow: /hospitals # Allow crawling of the hospitals list
8+
Allow: /services # Allow crawling of the service list
79

8-
# Sitemap declaration (optional)
9-
# Sitemap: https://med-space.vercel.app/sitemap.xml
10+
# Disallow crawling of sensitive areas
11+
Disallow: /* #disallow to all other pages
1012

11-
# End of file
13+
# Link to your sitemap for better crawling
14+
Sitemap: https://med-space.vercel.app/sitemap.xml

client/public/sitemap.xml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
3+
<url>
4+
<loc>https://med-space.vercel.app/</loc>
5+
<lastmod>2024-10-04</lastmod>
6+
<changefreq>daily</changefreq>
7+
<priority>1.0</priority>
8+
</url>
9+
<url>
10+
<loc>https://medi-connect-in.netlify.app/services</loc>
11+
<lastmod>2024-10-01</lastmod>
12+
<changefreq>monthly</changefreq>
13+
<priority>0.9</priority>
14+
</url>
15+
<url>
16+
<loc>https://med-space.vercel.app/about</loc>
17+
<lastmod>2024-10-01</lastmod>
18+
<changefreq>monthly</changefreq>
19+
<priority>0.8</priority>
20+
</url>
21+
<url>
22+
<loc>https://med-space.vercel.app/registerOPD</loc>
23+
<lastmod>2024-10-01</lastmod>
24+
<changefreq>weekly</changefreq>
25+
<priority>0.7</priority>
26+
</url>
27+
<url>
28+
<loc>https://med-space.vercel.app/success</loc>
29+
<lastmod>2024-10-01</lastmod>
30+
<changefreq>monthly</changefreq>
31+
<priority>0.6</priority>
32+
</url>
33+
<url>
34+
<loc>https://med-space.vercel.app/hospitals</loc>
35+
<lastmod>2024-10-01</lastmod>
36+
<changefreq>monthly</changefreq>
37+
<priority>0.7</priority>
38+
</url>
39+
<url>
40+
</urlset>

0 commit comments

Comments
 (0)