Merge pull request #256 from LAION-AI/46-privacy-and-terms

Adding a bare bones unstyled terms of service and privacy policy
This commit is contained in:
AbdBarho
2023-01-03 22:07:32 +01:00
committed by GitHub
4 changed files with 573 additions and 7 deletions
+8
View File
@@ -17,4 +17,12 @@ export const getDefaultLayout = (page: React.ReactElement) => (
</div>
);
export const getTransparentHeaderLayout = (page: React.ReactElement) => (
<div className="grid grid-rows-[min-content_1fr_min-content] h-full justify-items-stretch">
<Header transparent={true} />
{page}
<Footer />
</div>
);
export const noLayout = (page: React.ReactElement) => page;