|
1 | 1 | import Link from "next/link";
|
2 | 2 |
|
3 | 3 | import PurpleButton from "@/components/PurpleButton";
|
| 4 | +import RegistrationLayout from "@/components/layouts/RegistrationLayout"; |
4 | 5 | import JoinTeamInstructions from "@/components/teamRegistration/JoinTeamInstructions";
|
5 | 6 | import { Underline } from "@/utils/text-utils";
|
6 | 7 |
|
7 | 8 | export default function page() {
|
8 | 9 | return (
|
9 |
| - <div className="flex w-full flex-col justify-center gap-6 rounded-3xl bg-white p-4 text-3xl md:p-8"> |
10 |
| - <div className="flex flex-col items-center justify-center font-semibold md:items-start"> |
11 |
| - <h1>Next steps...</h1> |
12 |
| - <Underline noTick>Create your team!</Underline> |
| 10 | + <RegistrationLayout> |
| 11 | + <div className="flex w-full flex-col justify-center gap-6 rounded-3xl bg-white p-4 text-3xl md:p-8"> |
| 12 | + <div className="flex flex-col items-center justify-center font-semibold md:items-start"> |
| 13 | + <h1>Next steps...</h1> |
| 14 | + <Underline noTick>Create your team!</Underline> |
| 15 | + </div> |
| 16 | + <div className="flex flex-col gap-4 px-4"> |
| 17 | + <h1 className="text-2xl font-semibold">Looking for a team?</h1> |
| 18 | + <JoinTeamInstructions /> |
| 19 | + </div> |
| 20 | + <div className=" flex items-center justify-center"> |
| 21 | + <h2 className="max-w-lg text-center font-bold"> |
| 22 | + Ready to Register a new team or Join an existing team? |
| 23 | + </h2> |
| 24 | + </div> |
| 25 | + <div className="flex flex-col items-center justify-between text-white lg:flex-row"> |
| 26 | + <Link href={"/register/team/remind"}> |
| 27 | + <PurpleButton>Remind me later</PurpleButton> |
| 28 | + </Link> |
| 29 | + <Link href={"/register/team/ready"}> |
| 30 | + <PurpleButton>Yes!</PurpleButton> |
| 31 | + </Link> |
| 32 | + </div> |
13 | 33 | </div>
|
14 |
| - <div className="flex flex-col gap-4 px-4"> |
15 |
| - <h1 className="text-2xl font-semibold">Looking for a team?</h1> |
16 |
| - <JoinTeamInstructions /> |
17 |
| - </div> |
18 |
| - <div className=" flex items-center justify-center"> |
19 |
| - <h2 className="max-w-lg text-center font-bold"> |
20 |
| - Ready to Register a new team or Join an existing team? |
21 |
| - </h2> |
22 |
| - </div> |
23 |
| - <div className="flex flex-col items-center justify-between text-white lg:flex-row"> |
24 |
| - <Link href={"/register/team/remind"}> |
25 |
| - <PurpleButton>Remind me later</PurpleButton> |
26 |
| - </Link> |
27 |
| - <Link href={"/register/team/ready"}> |
28 |
| - <PurpleButton>Yes!</PurpleButton> |
29 |
| - </Link> |
30 |
| - </div> |
31 |
| - </div> |
| 34 | + </RegistrationLayout> |
32 | 35 | );
|
33 | 36 | }
|
0 commit comments