mirror of
https://github.com/OpenSignLabs/OpenSign.git
synced 2026-08-20 22:52:39 +02:00
20 lines
438 B
JavaScript
20 lines
438 B
JavaScript
import React from "react";
|
|
import { Helmet } from "react-helmet";
|
|
|
|
function Title({ title, drive }) {
|
|
return (
|
|
<Helmet>
|
|
<title>{drive ? 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;
|