mirror of
https://github.com/movie-web/extension.git
synced 2025-09-13 16:53:24 +00:00
SetupScreen completed
This commit is contained in:
@@ -3,6 +3,7 @@ import { useCallback } from 'react';
|
||||
import { Button } from '~components/Button';
|
||||
|
||||
import './SetupScreen.css';
|
||||
import { Icon } from '~components/Icon';
|
||||
|
||||
export function SetupScreen() {
|
||||
const open = useCallback(() => {
|
||||
@@ -11,11 +12,16 @@ export function SetupScreen() {
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<div className="disabled">
|
||||
<h1 className="title">Le's get this set up!</h1>
|
||||
<p style={{ paddingBottom: 25, paddingTop: 10 }}>
|
||||
To get started, we need to setup some things first. Click the button below to continue.
|
||||
</p>
|
||||
<div className="setup-screen">
|
||||
<div className="top">
|
||||
<div className="icon">
|
||||
<Icon name="logo" />
|
||||
</div>
|
||||
<h1 className="title">Le's get this set up!</h1>
|
||||
<p className="paragraph" style={{ paddingBottom: 25, paddingTop: 10 }}>
|
||||
To get started, we need to setup some things first. Click the button below to continue.
|
||||
</p>
|
||||
</div>
|
||||
<Button onClick={open} full>
|
||||
Continue
|
||||
</Button>
|
||||
|
Reference in New Issue
Block a user