Skip to content

Commit

Permalink
Merge pull request #176 from deji-ice/feature/improve-seo
Browse files Browse the repository at this point in the history
Feature/improve seo
  • Loading branch information
Luson045 authored Oct 5, 2024
2 parents bfd252b + 19fbce7 commit 6d66afd
Show file tree
Hide file tree
Showing 4 changed files with 318 additions and 276 deletions.
43 changes: 21 additions & 22 deletions client/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,32 +5,31 @@
<link rel="icon" href="%PUBLIC_URL%/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
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" />

<!-- SEO Metadata -->
<meta name="description" content="Med-Space: No more waiting in long queues. Get fast, reliable access to healthcare services." />
<meta name="keywords" content="healthcare, online healthcare services, no waiting, fast medical services, reliable healthcare, medical appointments" />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://www.med-space.com" />
<link rel="canonical" href="https://med-space.vercel.app" />

<!-- Open Graph Metadata for Social Media -->
<meta property="og:title" content="Med-Space - Fast and Reliable Healthcare Services" />
<meta property="og:description" content="No more waiting in long queues. Access healthcare services online with Medi-Connect." />
<meta property="og:image" content="%PUBLIC_URL%/logo.png" />
<meta property="og:url" content="https://med-space.vercel.app" />
<meta property="og:type" content="website" />

<!-- Twitter Card Metadata -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Med-Space - Fast and Reliable Healthcare Services" />
<meta name="twitter:description" content="No more waiting in long queues. Access healthcare services online with Medi-Connect." />
<meta name="twitter:image" content="%PUBLIC_URL%/logo.png" />

<!-- Manifest and Icons -->
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo.png" />
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<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" />
<title>Med-Space | Fast & Reliable Healthcare Services Online</title>

<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" />

<script type="application/ld+json">
{
"@context": "https://schema.org",
Expand Down
19 changes: 11 additions & 8 deletions client/public/robots.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
# robots.txt for https://med-space.vercel.app/

# Allow all bots to crawl important pages
User-agent: *
Allow: / # Allow crawling of the homepage
Allow: /about
Disallow: /* # Disallow crawling of all other pages
Allow: / # Allow crawling of the homepage
Allow: /about # Allow crawling of the about page
Allow: /registerOPD # Allow crawling of the registration form
Allow: /success # Allow crawling of the success page
Allow: /hospitals # Allow crawling of the hospitals list
Allow: /services # Allow crawling of the service list

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

# End of file
# Link to your sitemap for better crawling
Sitemap: https://med-space.vercel.app/sitemap.xml
40 changes: 40 additions & 0 deletions client/public/sitemap.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://med-space.vercel.app/</loc>
<lastmod>2024-10-04</lastmod>
<changefreq>daily</changefreq>
<priority>1.0</priority>
</url>
<url>
<loc>https://medi-connect-in.netlify.app/services</loc>
<lastmod>2024-10-01</lastmod>
<changefreq>monthly</changefreq>
<priority>0.9</priority>
</url>
<url>
<loc>https://med-space.vercel.app/about</loc>
<lastmod>2024-10-01</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>https://med-space.vercel.app/registerOPD</loc>
<lastmod>2024-10-01</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://med-space.vercel.app/success</loc>
<lastmod>2024-10-01</lastmod>
<changefreq>monthly</changefreq>
<priority>0.6</priority>
</url>
<url>
<loc>https://med-space.vercel.app/hospitals</loc>
<lastmod>2024-10-01</lastmod>
<changefreq>monthly</changefreq>
<priority>0.7</priority>
</url>
<url>
</urlset>
Loading

0 comments on commit 6d66afd

Please sign in to comment.