Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 2bfef81

Browse files
committed
fix: failing build escape characters
1 parent f160d31 commit 2bfef81

3 files changed

Lines changed: 15 additions & 4 deletions

File tree

src/components/Footer.jsx

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,24 @@ export function Footer() {
6565
className="group"
6666
aria-label="EddieHub on Discord"
6767
>
68-
<Image src={DiscordLogo} width="30" height="30" />
68+
<Image
69+
src={DiscordLogo}
70+
width="30"
71+
height="30"
72+
alt="Discord logo"
73+
/>
6974
</Link>
7075
<Link
7176
href="https://github.com/EddieHubCommunity"
7277
className="group"
7378
aria-label="EddieHub on GitHub"
7479
>
75-
<Image src={GitHubLogo} width="30" height="30" />
80+
<Image
81+
src={GitHubLogo}
82+
width="30"
83+
height="30"
84+
alt="GitHub logo"
85+
/>
7686
</Link>
7787
</div>
7888
<p className="mt-6 text-sm text-slate-500 sm:mt-0">

src/components/SecondaryFeatures.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function Feature({ feature, isActive, className, ...props }) {
4444
isActive ? 'ring ring-primary-600 ring-offset-4' : '',
4545
)}
4646
>
47-
<Image src={feature.icon} />
47+
<Image src={feature.icon} alt={`Logo for ${feature.name}`} />
4848
</div>
4949
<h3
5050
className={clsx(

src/components/Testimonials.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@ export function Testimonials() {
8686
Testimonials
8787
</h2>
8888
<p className="mt-4 text-lg tracking-tight text-slate-700">
89-
What it means to be part of this community in the members' own words
89+
What it means to be part of this community in the members&lsquo; own
90+
words
9091
</p>
9192
</div>
9293
<ul

0 commit comments

Comments
 (0)