-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added:: Meta Tags, robots.txt, sitemaps for SEO Enhancement (#171)
* Create robots.txt * Update robots.txt * Create sitemap.xml * Update sitemap.xml * Update package.json * Update package-lock.json * Create metadata.tsx --------- Co-authored-by: yash ainapure <[email protected]>
- Loading branch information
1 parent
250b5a5
commit 57e9467
Showing
5 changed files
with
107 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,5 @@ | ||
|
||
User-agent: * | ||
Disallow: /private | ||
Allow: / | ||
Sitemap: https://dypcetclubs-live.onrender.com/ |
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 @@ | ||
<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1"><url><loc>https://dypcetclubs-live.onrender.com/</loc><changefreq>daily</changefreq><priority>1.0</priority></url></urlset> |
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,28 @@ | ||
import React from "react"; | ||
import { Helmet } from "react-helmet"; | ||
|
||
const Metadata: React.FC = () => ( | ||
<Helmet> | ||
<title>College Clubs Management | Track Events & Hiring</title> | ||
<meta | ||
name="description" | ||
content="An initiative to manage all college clubs and their hiring process through a user-friendly website." | ||
/> | ||
<meta | ||
name="keywords" | ||
content="College Clubs, Club Management, Events, Hiring, College Website" | ||
/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<meta property="og:title" content="College Clubs Management" /> | ||
<meta | ||
property="og:description" | ||
content="Track college club events and manage hiring processes through a central platform." | ||
/> | ||
<meta property="og:url" content="https://dypcetclubs-live.onrender.com" /> | ||
<meta property="og:type" content="website" /> | ||
<meta name="robots" content="index, follow" /> | ||
<link rel="icon" href="/favicon.ico" /> | ||
</Helmet> | ||
); | ||
|
||
export default Metadata; |