diff options
| author | 2023-04-22 19:52:26 +0800 | |
|---|---|---|
| committer | 2023-04-22 19:52:26 +0800 | |
| commit | 4838df315931bb883f704ec3e1abe2685f296cdf (patch) | |
| tree | 57a8550c4cd5338f1126364bb518c6cde8d96e7d /docs/components/pages/confirm.tsx | |
| parent | db74ade0234a40c2120ad5f2a41bee50ce13de02 (diff) | |
| download | HydroRoll-4838df315931bb883f704ec3e1abe2685f296cdf.tar.gz HydroRoll-4838df315931bb883f704ec3e1abe2685f296cdf.zip | |
😀
Diffstat (limited to 'docs/components/pages/confirm.tsx')
| -rw-r--r-- | docs/components/pages/confirm.tsx | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/docs/components/pages/confirm.tsx b/docs/components/pages/confirm.tsx new file mode 100644 index 0000000..b9295cf --- /dev/null +++ b/docs/components/pages/confirm.tsx @@ -0,0 +1,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 Turbo Team + </p> + </div> + </div> + </div> + </div> + </div> + </Container> + </> + ); +} |
