Skip to content

Commit 6742d02

Browse files
committed
add images to the carousel
1 parent b0b85b3 commit 6742d02

File tree

7 files changed

+48
-41
lines changed

7 files changed

+48
-41
lines changed
113 KB
Loading
93.3 KB
Loading
81.2 KB
Loading

src/assets/images/list_page.png

102 KB
Loading

src/assets/images/share_form.png

134 KB
Loading

src/assets/images/sign_in.png

109 KB
Loading

src/views/unauthenticated/About.tsx

Lines changed: 48 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ import Card from "react-bootstrap/Card";
77
import Carousel from "react-bootstrap/Carousel";
88
import Image from "react-bootstrap/Image";
99
import 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

1217
export 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&apos;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&apos;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

Comments
 (0)