feat: monorepo
This commit is contained in:
9
apps/web/src/components/PageHead.tsx
Normal file
9
apps/web/src/components/PageHead.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import Head from "next/head";
|
||||
|
||||
export const PageHead = ({ title }: { title: string }) => {
|
||||
return (
|
||||
<Head>
|
||||
<title>{title}</title>
|
||||
</Head>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user