diff --git a/src/components/Home/Session1/TitleGroup/index.tsx b/src/components/Home/Session1/TitleGroup/index.tsx index 178d6f2..e730619 100644 --- a/src/components/Home/Session1/TitleGroup/index.tsx +++ b/src/components/Home/Session1/TitleGroup/index.tsx @@ -1,7 +1,16 @@ -import React from 'react' +import React, { useCallback } from 'react' import "./index.css" export const TitleGroup = () => { + + const handleClickCloud = useCallback(() => { + window.open("https://domino-workflows.cloud/sign-in", "_blank") + }, []) + + const handleClickDocs = useCallback(() => { + window.location.href = "/docs/intro" + }, []) + return (
@@ -17,8 +26,8 @@ export const TitleGroup = () => {
- - + +
)