Messing with sites

This commit is contained in:
Owen Schwartz
2024-10-13 23:16:52 -04:00
parent 41e1c7e859
commit 95cdc3ca0f
4 changed files with 34 additions and 35 deletions

View File

@@ -5,7 +5,7 @@ import { GetSiteResponse } from "@server/routers/site/getSite";
import { ReactNode } from "react";
type LandingProviderProps = {
site: GetSiteResponse;
site: GetSiteResponse | null;
children: ReactNode;
};