Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/Newsletter.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ export function Newsletter() {
Awards
</h3>
<div className="my-4 flex flex-wrap items-center justify-evenly gap-4">
<Image src={CommunityAward} width="500" className="rounded" />
<Image src={TeacherAward} width="500" className="rounded" />
<Image alt={"Community Award"} src={CommunityAward} width="500" className="rounded" />
<Image alt={"Teacher Award"} src={TeacherAward} width="500" className="rounded" />
</div>
</div>
</Container>
Expand Down
2 changes: 1 addition & 1 deletion src/components/PrimaryFeatures.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export function PrimaryFeatures() {
<Image
className="w-full"
src={feature.image}
alt=""
alt={`image of ${feature.title}`}
priority
sizes="(min-width: 1024px) 67.8125rem, (min-width: 640px) 100vw, 45rem"
/>
Expand Down
2 changes: 1 addition & 1 deletion src/components/SecondaryFeatures.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ function FeaturesDesktop() {
<Image
className="w-full"
src={feature.image}
alt=""
alt={feature.name}
sizes="52.75rem"
/>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Testimonials.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export function Testimonials() {
testimonial.author.username +
'.png'
}
alt=""
alt={testimonial.name}
width={56}
height={56}
/>
Expand Down