Skip to content

Commit

Permalink
Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
noahk004 committed Oct 30, 2024
1 parent 205b186 commit 81cd98e
Showing 1 changed file with 26 additions and 10 deletions.
36 changes: 26 additions & 10 deletions apps/site/src/app/(home)/sections/Landing/Characters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,29 @@ import mainCharacter from "@/assets/images/intro-main-anteater.svg";
import styles from "./Characters.module.scss";

export default function Characters() {
return (
<div>
<Image src={waterAnteater} alt="Anteater floating in the water" className={styles.character} />
<Image src={waterAnteaterShadow} alt="Reflection of anteater in the water" className={styles.characterShadow} />
<Image src={waterAnteaterFoam} alt="Foam between anteater and the water" className={styles.characterFoam} />
<Image src={mainCharacter} alt="Anteater standing on the shore" className={styles.mainCharacter} />
<Image src={beachBall} alt="Beach ball" className={styles.beachBall} />
</div>
)
}
return (
<div>
<Image
src={waterAnteater}
alt="Anteater floating in the water"
className={styles.character}
/>
<Image
src={waterAnteaterShadow}
alt="Reflection of anteater in the water"
className={styles.characterShadow}
/>
<Image
src={waterAnteaterFoam}
alt="Foam between anteater and the water"
className={styles.characterFoam}
/>
<Image
src={mainCharacter}
alt="Anteater standing on the shore"
className={styles.mainCharacter}
/>
<Image src={beachBall} alt="Beach ball" className={styles.beachBall} />
</div>
);
}

0 comments on commit 81cd98e

Please sign in to comment.