File tree Expand file tree Collapse file tree 1 file changed +27
-12
lines changed
Expand file tree Collapse file tree 1 file changed +27
-12
lines changed Original file line number Diff line number Diff line change 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" ;
324import { Button } from "@/components/ui/button" ;
4- import SignUpDialog from "./sign-up-dialog " ;
25+ import Link from "next/link " ;
526
627const 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
You can’t perform that action at this time.
0 commit comments