Merge branch 'dev'

This commit is contained in:
Atridad Lahiji 2023-09-19 23:00:00 -06:00
commit 3cc149d462
No known key found for this signature in database
2 changed files with 2 additions and 22 deletions

View file

@ -5,17 +5,7 @@ import { SignIn } from "@clerk/nextjs";
export const dynamic = "force-static";
const SignInPage = () => (
<div style={styles}>
<SignIn path="/sign-in" routing="path" signUpUrl="/sign-up" />
</div>
);
export default SignInPage;
const styles = {
width: "100vw",
height: "100vh",
display: "flex",
justifyContent: "center",
alignItems: "center",
};

View file

@ -5,17 +5,7 @@ import { SignUp } from "@clerk/nextjs";
export const dynamic = "force-static";
const SignUpPage = () => (
<div style={styles}>
<SignUp path="/sign-up" routing="path" signInUrl="/sign-in" />
</div>
);
export default SignUpPage;
const styles = {
width: "100vw",
height: "100vh",
display: "flex",
justifyContent: "center",
alignItems: "center",
};