1
+ import { Card , Button , Box , Container , Sheet , Stack , Typography , List , ListItem } from '@mui/joy'
2
+ import Header from '../components/Header.jsx'
3
+ import graphic1 from '../assets/graphic1.webp'
4
+
5
+ const Instruction = ( ) => {
6
+ return ( < >
7
+ < Header />
8
+ < Container sx = { { minWidth : { md : "1000px" , lg : "1450px" } , pl : 2 , pr : 4 } } >
9
+ < Stack sx = { { flexDirection : { xs : "column" , md : "row" } , alignItems : "center" , my : 2 } } >
10
+ < Box sx = { { flex : 1 } } >
11
+ < Box >
12
+ < Box component = "img" sx = { { width : "100%" } }
13
+ src = { graphic1 }
14
+ alt = "Instruction to NeuraChat"
15
+ />
16
+ </ Box >
17
+ </ Box >
18
+ < Box sx = { { flex : 1 } } >
19
+ < Typography level = "body-md" sx = { { fontStyle : "italic" } } >
20
+ STEPS
21
+ </ Typography >
22
+ < Typography level = "h1" sx = { { mb : 2 , fontSize : "2.5rem" } } >
23
+ Easy to < Typography sx = { { color : "primary.400" } } > Get Started.</ Typography >
24
+ </ Typography >
25
+ < List marker = "decimal" size = "lg" >
26
+ < ListItem sx = { { alignItems : "flex-start" , flexDirection : "column" , mb : 2 } } >
27
+ < Typography level = "title-lg" sx = { { fontSize : "1.5rem" , mb : 1 } } >
28
+ Go to Homepage
29
+ </ Typography >
30
+ < Typography level = "body-lg" >
31
+ To communicate with NeuraChat AI
32
+ </ Typography >
33
+ </ ListItem >
34
+ < ListItem sx = { { alignItems : "flex-start" , flexDirection : "column" , mb : 2 } } >
35
+ < Typography level = "title-lg" sx = { { fontSize : "1.5rem" , mb : 1 } } >
36
+ Type something
37
+ </ Typography >
38
+ < Typography level = "body-lg" >
39
+ and click send - You can ask about everything
40
+ </ Typography >
41
+ </ ListItem >
42
+ < ListItem sx = { { alignItems : "flex-start" , flexDirection : "column" , mb : 2 } } >
43
+ < Typography level = "title-lg" sx = { { fontSize : "1.5rem" , mb : 1 } } >
44
+ Get response
45
+ </ Typography >
46
+ < Typography level = "body-lg" >
47
+ You can also set NeuraChat settings
48
+ </ Typography >
49
+ </ ListItem >
50
+ </ List >
51
+ </ Box >
52
+ </ Stack >
53
+ < Stack sx = { { flexDirection : { xs : "column" , md : "row" } , alignItems : "center" , justifyContent : "center" } } >
54
+ < Card sx = { { flexDirection : { xs : "column" , md : "row" } , backgroundColor : "primary.solidBg" , p : { xs : 4 , md :8 } , width : "100%" , justifyContent : "space-between" } } >
55
+ < Typography level = "h3" sx = { { color : "primary.solidColor" } } >
56
+ People all over the world are happily using NeuraChat.
57
+ </ Typography >
58
+ < Box sx = { { display : "flex" , gap : 2 , justifyContent : { xs : "space-around" } } } >
59
+ < Button color = "danger" size = "lg" > Get Started</ Button >
60
+ < Button variant = "soft" size = "lg" color = "primary" > Contact us</ Button >
61
+ </ Box >
62
+ </ Card >
63
+ </ Stack >
64
+ </ Container >
65
+ </ > )
66
+ }
67
+
68
+
69
+ export default Instruction ;
0 commit comments