resolve minor ui issues

This commit is contained in:
prafull-opensignlabs
2023-12-20 23:57:02 +05:30
parent 5170e4eee2
commit 74c9e21d55
6 changed files with 168 additions and 75 deletions
@@ -0,0 +1,19 @@
import React from "react";
import { Helmet } from "react-helmet";
function Title({ title }) {
return (
<Helmet>
<title>{`${title} - OpenSign™`}</title>
<meta name="description" content={`${title} - OpenSign™`} />
<link
rel="icon"
type="image/png"
href={localStorage.getItem("fev_Icon")}
sizes="40x40"
/>
</Helmet>
);
}
export default Title;