@@ -7,7 +7,12 @@ import Card from "react-bootstrap/Card";
77import Carousel from "react-bootstrap/Carousel" ;
88import Image from "react-bootstrap/Image" ;
99import Container from "react-bootstrap/Container" ;
10- import SampleImage from "../../assets/images/sample.png" ;
10+ import SignInImage from "../../assets/images/sign_in.png" ;
11+ import AddListImage from "../../assets/images/add_list_name.png" ;
12+ import ClickListImage from "../../assets/images/click_list_name.png" ;
13+ import AddFormImage from "../../assets/images/add_item_form.png" ;
14+ import ListPageImage from "../../assets/images/list_page.png" ;
15+ import ShareFormImage from "../../assets/images/share_form.png" ;
1116
1217export function About ( ) {
1318 const [ stepIndex , setStepIndex ] = useState ( 0 ) ;
@@ -22,68 +27,70 @@ export function About() {
2227 < Card . Body >
2328 < Card . Title className = "fs-3" > How it works</ Card . Title >
2429 < Carousel
30+ variant = "dark"
2531 activeIndex = { stepIndex }
2632 onSelect = { handleStepIndexChoice }
2733 touch
2834 >
2935 < Carousel . Item >
30- < Container className = "w-50" >
31- < Image src = { SampleImage } fluid />
36+ < Container >
37+ < Image src = { SignInImage } fluid />
3238 </ Container >
33- < Carousel . Caption >
34- < p >
35- Create a list for different stores or different grouping of
36- items.
37- </ p >
38- </ Carousel . Caption >
39+ < p className = "text-info m-5" >
40+ Click the sign in button to be prompted to use your google
41+ account to login.
42+ </ p >
3943 </ Carousel . Item >
4044 < Carousel . Item >
41- < Container className = "w-50" >
42- < Image src = { SampleImage } fluid />
45+ < Container >
46+ < Image src = { AddListImage } fluid />
4347 </ Container >
44- < Carousel . Caption >
45- < p > Select a list that you'd like to add items on.</ p >
46- </ Carousel . Caption >
48+ < p className = "text-info m-5" >
49+ Create a list for different stores or different grouping of
50+ items.
51+ </ p >
4752 </ Carousel . Item >
4853 < Carousel . Item >
49- < Container className = "w-50" >
50- < Image src = { SampleImage } fluid />
54+ < Container >
55+ < Image src = { ClickListImage } fluid />
5156 </ Container >
52- < Carousel . Caption >
53- < p >
54- Open the list manager, to start adding items and choosing when
55- you will need to restock next.
56- </ p >
57- </ Carousel . Caption >
57+ < p className = "text-info m-5" >
58+ Select a list that you'd like to add items on.
59+ </ p >
5860 </ Carousel . Item >
5961 < Carousel . Item >
60- < Container className = "w-50" >
61- < Image src = { SampleImage } fluid />
62+ < Container >
63+ < Image src = { AddFormImage } fluid />
6264 </ Container >
63- < Carousel . Caption >
64- < p >
65- Now that your new list has items you can start checking off
66- items as you shop!
67- </ p >
68- < p >
65+ < p className = "text-info m-5" >
66+ At the top of the page you will be able to add items to your new
67+ list and set their urgency status
68+ </ p >
69+ </ Carousel . Item >
70+ < Carousel . Item >
71+ < Container >
72+ < Image src = { ListPageImage } fluid />
73+ </ Container >
74+ < p className = "text-info m-5" >
75+ Now that your new list has items you can start checking off
76+ items as you shop!
77+ < li >
6978 Each time an item is marked purchase the application evaluates
7079 your shopping habits! Supporting you by adjusting your next
7180 purchase predictions base on when your previous shopping
7281 history!
73- </ p >
74- </ Carousel . Caption >
82+ </ li >
83+ </ p >
7584 </ Carousel . Item >
7685 < Carousel . Item >
77- < Container className = "w-50" >
78- < Image src = { SampleImage } fluid />
86+ < Container >
87+ < Image src = { ShareFormImage } fluid />
7988 </ Container >
80- < Carousel . Caption >
81- < p >
82- If someone else needs to be let into to the shopping time you
83- can easily share specific lists with with in the list manager
84- so they can see and mark items as purchased too!
85- </ p >
86- </ Carousel . Caption >
89+ < p className = "text-info m-5" >
90+ If someone else needs to be let into to the shopping time you
91+ can easily share specific lists with with in the list manager so
92+ they can see and mark items as purchased too!
93+ </ p >
8794 </ Carousel . Item >
8895 </ Carousel >
8996 < SignInButton isSignIn = { false } />
0 commit comments