Skip to content

Commit 00d1b14

Browse files
committed
chore: inform of disabled app
1 parent caab1f9 commit 00d1b14

File tree

1 file changed

+20
-14
lines changed

1 file changed

+20
-14
lines changed

src/app/page.tsx

Lines changed: 20 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,26 @@ import { SignedIn, SignedOut } from "@clerk/nextjs";
44
import { Button, Link } from "@nextui-org/react";
55

66
export default function HomePage() {
7+
// return (
8+
// <>
9+
// <SignedIn>
10+
// <Button color="primary" as={Link} href="/tasks">
11+
// Go to Tasks
12+
// </Button>
13+
// </SignedIn>
14+
// <SignedOut>
15+
// <div className="flex items-center justify-center gap-4">
16+
// <StyledSignIn />
17+
// <p>or</p>
18+
// <StyledSignUp />
19+
// </div>
20+
// </SignedOut>
21+
// </>
22+
// );
23+
724
return (
8-
<>
9-
<SignedIn>
10-
<Button color="primary" as={Link} href="/tasks">
11-
Go to Tasks
12-
</Button>
13-
</SignedIn>
14-
<SignedOut>
15-
<div className="flex items-center justify-center gap-4">
16-
<StyledSignIn />
17-
<p>or</p>
18-
<StyledSignUp />
19-
</div>
20-
</SignedOut>
21-
</>
25+
<span>
26+
The hosted version of <strong>Tasks</strong> has been disabled.
27+
</span>
2228
);
2329
}

0 commit comments

Comments
 (0)