blob: ae54cd0b67827c857d686a70c00ee51ff0666b3b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/* eslint-disable react/no-unescaped-entities */
import Head from "next/head";
import { Container } from "../Container";
export default function Confirm() {
return (
<>
<Head>
<title>Confirm</title>
<meta name="robots" content="noindex" />
</Head>
<Container>
<div className="container mx-auto">
<div className="pt-20 mx-auto ">
<div className="max-w-md mx-auto rounded-lg shadow-xl dark:bg-gray-900 dark:bg-opacity-80">
<div className="p-6 rounded-lg shadow-sm ">
<div className="mx-auto space-y-4 dark:text-white">
<h2 className="text-xl font-bold">Thanks so much!</h2>
<p>
Keep an eye on your inbox for product updates and
announcements from Turbo and Vercel.
</p>{" "}
<p>
Thanks,
<br />
The HydroRoll'水系 Team.
</p>
</div>
</div>
</div>
</div>
</div>
</Container>
</>
);
}
|