Prettier format pending files
This commit is contained in:
parent
e6c82c8c2a
commit
247f711755
1 changed files with 9 additions and 3 deletions
|
|
@ -100,20 +100,26 @@ export default function MentorApply() {
|
||||||
<CardHeader>
|
<CardHeader>
|
||||||
<CardTitle>Sign in required</CardTitle>
|
<CardTitle>Sign in required</CardTitle>
|
||||||
<CardDescription>
|
<CardDescription>
|
||||||
Sign in to create your mentor profile and start receiving requests.
|
Sign in to create your mentor profile and start receiving
|
||||||
|
requests.
|
||||||
</CardDescription>
|
</CardDescription>
|
||||||
</CardHeader>
|
</CardHeader>
|
||||||
<CardContent>
|
<CardContent>
|
||||||
<div className="flex gap-3">
|
<div className="flex gap-3">
|
||||||
<Button
|
<Button
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
const next = encodeURIComponent(location.pathname + location.search);
|
const next = encodeURIComponent(
|
||||||
|
location.pathname + location.search,
|
||||||
|
);
|
||||||
navigate(`/login?next=${next}`);
|
navigate(`/login?next=${next}`);
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
Sign in
|
Sign in
|
||||||
</Button>
|
</Button>
|
||||||
<Button variant="outline" onClick={() => navigate("/community#mentorship")}>
|
<Button
|
||||||
|
variant="outline"
|
||||||
|
onClick={() => navigate("/community#mentorship")}
|
||||||
|
>
|
||||||
Back to directory
|
Back to directory
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue