Skip to content

Commit

Permalink
feat: new assets (possibly temporary)
Browse files Browse the repository at this point in the history
  • Loading branch information
IanKrieger committed Aug 28, 2023
1 parent 97ca820 commit d213813
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
4 changes: 2 additions & 2 deletions One.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions Three.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions Two.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 7 additions & 3 deletions src/auth/views/MobileAdsBenefits.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ import {
Typography,
} from "@mui/material";

import one from "../../../One.svg";
import two from "../../../Two.svg";
import three from "../../../Three.svg";

export function MobileAdsBenefits() {
return (
<Box>
Expand All @@ -19,7 +23,7 @@ export function MobileAdsBenefits() {
sx={{ flexDirection: "row" }}
>
<ListItemAvatar>
<Avatar alt="One" src="/One.svg" />
<Avatar alt="One" src={one} />
</ListItemAvatar>
<ItemText
primary="For all business sizes"
Expand All @@ -32,7 +36,7 @@ export function MobileAdsBenefits() {
sx={{ flexDirection: "row" }}
>
<ListItemAvatar>
<Avatar alt="Two" src="/Two.svg" />
<Avatar alt="Two" src={two} />
</ListItemAvatar>
<ItemText
primary="Powerful Ad Formats"
Expand All @@ -45,7 +49,7 @@ export function MobileAdsBenefits() {
sx={{ flexDirection: "row" }}
>
<ListItemAvatar>
<Avatar alt="Three" src="/Three.svg" />
<Avatar alt="Three" src={three} />
</ListItemAvatar>
<ItemText
primary="Unparalleled privacy"
Expand Down

0 comments on commit d213813

Please sign in to comment.