Add page title
This commit is contained in:
11
src/components/Meta.tsx
Normal file
11
src/components/Meta.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import Head from "next/head";
|
||||
|
||||
const Meta = ({ title }: { title: string }) => {
|
||||
return (
|
||||
<Head>
|
||||
<title>{title} - Pingvin Share</title>
|
||||
</Head>
|
||||
);
|
||||
};
|
||||
|
||||
export default Meta;
|
||||
Reference in New Issue
Block a user