暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PageHead.js 329B

1234567891011121314
  1. import Head from "next/head";
  2. function PageHead({headTitle}) {
  3. return (
  4. <>
  5. <Head>
  6. <title>
  7. {headTitle ? headTitle : "Intez - Dashboard React App"}
  8. </title>
  9. <link rel="icon" href="/favicon.png" />
  10. </Head>
  11. </>
  12. );
  13. }
  14. export default PageHead;