+
diff --git a/apps/shinkai-visor/src/components/welcome/welcome.tsx b/apps/shinkai-visor/src/components/welcome/welcome.tsx
index 437ac7235..3a071cbc0 100644
--- a/apps/shinkai-visor/src/components/welcome/welcome.tsx
+++ b/apps/shinkai-visor/src/components/welcome/welcome.tsx
@@ -1,4 +1,5 @@
-import { Button } from '@shinkai_network/shinkai-ui';
+import { Button, Checkbox } from '@shinkai_network/shinkai-ui';
+import { useState } from 'react';
import { FormattedMessage } from 'react-intl';
import { useHistory } from 'react-router';
@@ -7,8 +8,11 @@ import { srcUrlResolver } from '../../helpers/src-url-resolver';
export default function Welcome() {
const history = useHistory();
+ const [acceptedTermsAndContidions, setAcceptedTermsAndContidions] = useState<
+ boolean | 'indeterminate'
+ >(false);
return (
-
+
-
+
+
+