Skip to content

Commit 81e60d8

Browse files
authored
Merge pull request #31 from Blockchain-Powered-eSIM/guyphy/content-update
Swap beta form to alpha website
2 parents 3245b65 + cf12344 commit 81e60d8

File tree

1 file changed

+27
-12
lines changed

1 file changed

+27
-12
lines changed

components/sign-up-button.tsx

Lines changed: 27 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,36 @@
1+
//"use client";
2+
//import { useState } from "react";
3+
//import { Button } from "@/components/ui/button";
4+
//import SignUpDialog from "./sign-up-dialog";
5+
//
6+
//const SignUpButton = () => {
7+
// const [open, setOpen] = useState(false);
8+
// return (
9+
// <>
10+
// <Button
11+
// onClick={() => setOpen(!open)}
12+
// size="xl"
13+
// className="bg-cashmere-500 hover:bg-cashmere-500/90"
14+
// >
15+
// Sign Up For beta
16+
// </Button>
17+
// <SignUpDialog open={open} setOpen={setOpen} />
18+
// </>
19+
// );
20+
//};
21+
//
22+
//export default SignUpButton;
123
"use client";
2-
import { useState } from "react";
324
import { Button } from "@/components/ui/button";
4-
import SignUpDialog from "./sign-up-dialog";
25+
import Link from "next/link";
526

627
const SignUpButton = () => {
7-
const [open, setOpen] = useState(false);
828
return (
9-
<>
10-
<Button
11-
onClick={() => setOpen(!open)}
12-
size="xl"
13-
className="bg-cashmere-500 hover:bg-cashmere-500/90"
14-
>
15-
Sign Up For beta
29+
<Link href="https://alpha.kokio.app" target="_blank">
30+
<Button size="xl" className="bg-cashmere-500 hover:bg-cashmere-500/90">
31+
Try out the Alpha now!
1632
</Button>
17-
<SignUpDialog open={open} setOpen={setOpen} />
18-
</>
33+
</Link>
1934
);
2035
};
2136

0 commit comments

Comments
 (0)