Skip to content

Commit 4540376

Browse files
committed
Add "sharing warning" and "sharing" collages
- Adds alt text for both
1 parent 73b63ef commit 4540376

3 files changed

Lines changed: 13 additions & 11 deletions

File tree

120 KB
Binary file not shown.

src/assets/images/sharing.avif

50.9 KB
Binary file not shown.

src/onboarding.ts

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ import "@material/web/icon/icon.js";
1313
// Import assets
1414
import forestImg from "./assets/images/forest.avif";
1515
import packratLogo from "./assets/brand/packrat-lockup-white.svg";
16-
import collageImg from "./assets/images/downloading.avif";
16+
import downloadingImg from "./assets/images/downloading.avif";
17+
import sharingImg from "./assets/images/sharing.avif";
18+
import warningImg from "./assets/images/sharing-warning.avif";
1719

1820
@customElement("wr-onboarding")
1921
export class OnboardingView extends LitElement {
@@ -204,21 +206,21 @@ export class OnboardingView extends LitElement {
204206
},
205207
{
206208
title: "Packrat downloads websites as you browse",
207-
img: collageImg,
209+
img: downloadingImg,
208210
body: "All the pages you view with the extension enabled will be saved locally to your computer.",
209211
alt: "Digital collage of content coalessing into a vintage computer monitor",
210212
},
211213
{
212-
title: "Send a link to share your archives",
213-
img: collageImg,
214-
body: "All data is transferred directly from your computer to their browser.\n\n We don't get access to your archives.",
215-
alt: "",
214+
title: "Share your archives with others with a link",
215+
img: sharingImg,
216+
body: "All data is transferred directly from your computer to their browser. Nobody else gets access to your archives.",
217+
alt: "Digital collage of two computers with images being transferred between them in a whirlwind of scribbles",
216218
},
217219
{
218-
title: "Web archives of logged-in sites can contain private data!",
219-
img: collageImg,
220-
body: "Only share web archives of logged-in sites with people you trust.",
221-
alt: "",
220+
title: "Web archives can contain private data!",
221+
img: warningImg,
222+
body: "Web archives of logged-in sites can contain private messages, user data, and account credentials. Only share archives of logged-in sites with people you trust.",
223+
alt: "Digital collage of a top secret classified document cover sheet atop maps and an envelope",
222224
},
223225
];
224226

@@ -267,7 +269,7 @@ export class OnboardingView extends LitElement {
267269
<img src="${slide.img}" alt="${slide.alt}" />
268270
</div>
269271
<div
270-
style="display: flex; justify-content: center; align-items: center; flex-direction: column;"
272+
style="display: flex; justify-content: center; align-items: center; flex-direction: column; margin-bottom: 2rem;"
271273
>
272274
<div class="md-typescale-body-medium">
273275
${slide.title}

0 commit comments

Comments
 (0)