Skip to content

Commit

Permalink
meta tags are optimized
Browse files Browse the repository at this point in the history
  • Loading branch information
Sayan-Maity committed Jul 18, 2023
1 parent 50aca48 commit 9c9f1e0
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions client/src/pages/livechat/Livechat.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,26 @@ import { HiOutlineChatBubbleOvalLeftEllipsis } from "react-icons/hi2";

import "./Livechat.css";
import { Helmet } from "react-helmet";
import { CommonPageHelmet, DynamicTitleHelmet } from "../../constants/SEO";

const Livechat = () => {
return (
<>
<div className="livechat">
<Helmet>
<title>SheRise | Mentor</title>
<title>{DynamicTitleHelmet.MentorPageTitle}</title>
<meta name="description" content={CommonPageHelmet.description} />
<meta name="keywords" content={CommonPageHelmet.keywords} />
<meta property="og:title" content={CommonPageHelmet.ogTitle} />
<meta
name="description"
content="SheRise provides user with Personalized Mentor to help them with their career and do live one-on-one chat in real time. "
/>
<meta
name="keywords"
content="Personalized Mentor, Help, Support, Career, Tech, Opportunities, Job Listings"
property="og:description"
content={CommonPageHelmet.ogDescription}
/>
<meta property="og:image" content={CommonPageHelmet.ogImage} />
<meta property="og:url" content={CommonPageHelmet.ogURL} />
<meta property="og:type" content={CommonPageHelmet.ogType} />
<meta property="og:site_name" content={CommonPageHelmet.ogSiteName} />
<meta property="og:locale" content={CommonPageHelmet.ogLocale} />
</Helmet>
<div className="livechat-inner">
<div className="mentor-group">
Expand Down

0 comments on commit 9c9f1e0

Please sign in to comment.