mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-06 05:40:02 -06:00
Move repository into a monorepo with turborepo and pnpm. This is a big change in the way the code is organized, used and deployed.
13 lines
209 B
TypeScript
13 lines
209 B
TypeScript
import Head from "next/head";
|
|
|
|
export default function BaseLayoutUnauthorized({ title, children }) {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>{title}</title>
|
|
</Head>
|
|
{children}
|
|
</>
|
|
);
|
|
}
|