mirror of
https://github.com/OpenSignLabs/OpenSign.git
synced 2026-08-23 08:02:30 +02:00
Update page titles format
This commit is contained in:
@@ -4,13 +4,18 @@ import { Helmet } from "react-helmet";
|
||||
function Title(props) {
|
||||
return (
|
||||
<Helmet>
|
||||
<title>{`${
|
||||
localStorage.getItem("appTitle") ? localStorage.getItem("appTitle") : ""
|
||||
} - ${props.title}`}</title>
|
||||
<title>{`${props.title} - OpenSign`}</title>
|
||||
{/* <title>
|
||||
{`${localStorage.getItem("appTitle") ? localStorage.getItem("appTitle") : ""} - ${props.title}`}
|
||||
</title> */}
|
||||
<meta
|
||||
name="description"
|
||||
content={`${localStorage.getItem("appTitle")} - ${props.title}`}
|
||||
content={`${props.title} - OpenSign`}
|
||||
/>
|
||||
{/* <meta
|
||||
name="description"
|
||||
content={`${localStorage.getItem("appTitle")} - ${props.title}`}
|
||||
/> */}
|
||||
<link
|
||||
rel="icon"
|
||||
type="image/png"
|
||||
|
||||
Reference in New Issue
Block a user