Initial commit

This commit is contained in:
2023-10-19 16:49:05 -04:00
commit d731041378
63 changed files with 10037 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
export async function onBeforeRender(pageContext: PageContext) {
return {
pageContext: {
pageProps: {
logged_in: Boolean(pageContext.current_user),
},
status: pageContext.current_user ? 200 : 401,
},
};
}
export const description = "Found a cheater in Car Crushers 2? Report them here.";
export const title = "Report - Car Crushers";