Add alt attribute to Avatar images and improve FAQ function
Added 'alt' attribute to all Avatar component images improving accessibility and SEO of the website. Adjusted the function makeId inside FAQ component to accept any type of base and index providing more flexibility.
This commit is contained in:
parent
6025dc07db
commit
2272b189de
2 changed files with 5 additions and 5 deletions
|
@ -7,7 +7,7 @@ const subTitle: string =
|
||||||
"Ask us anything about our brand and products, and get factual responses.";
|
"Ask us anything about our brand and products, and get factual responses.";
|
||||||
|
|
||||||
// Define a helper function to generate ids
|
// Define a helper function to generate ids
|
||||||
const makeId = (base, index) => `${base}${index + 1}`;
|
const makeId = (base: any, index: any) => `${base}${index + 1}`;
|
||||||
|
|
||||||
const faqs = [
|
const faqs = [
|
||||||
{
|
{
|
||||||
|
|
|
@ -67,16 +67,16 @@ const reviews:string = "12.8k";
|
||||||
<!-- Avatar Group -->
|
<!-- Avatar Group -->
|
||||||
<div class="flex justify-center -space-x-3">
|
<div class="flex justify-center -space-x-3">
|
||||||
<Avatar
|
<Avatar
|
||||||
src="https://images.unsplash.com/photo-1568602471122-7832951cc4c5?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=facearea&facepad=2&w=300&h=300&q=80"
|
src="https://images.unsplash.com/photo-1568602471122-7832951cc4c5?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=facearea&facepad=2&w=300&h=300&q=80" alt="Image Description"
|
||||||
/>
|
/>
|
||||||
<Avatar
|
<Avatar
|
||||||
src="https://images.unsplash.com/photo-1531927557220-a9e23c1e4794?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=facearea&facepad=2&w=300&h=300&q=80"
|
src="https://images.unsplash.com/photo-1531927557220-a9e23c1e4794?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=facearea&facepad=2&w=300&h=300&q=80" alt="Image Description"
|
||||||
/>
|
/>
|
||||||
<Avatar
|
<Avatar
|
||||||
src="https://images.unsplash.com/photo-1541101767792-f9b2b1c4f127?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&&auto=format&fit=facearea&facepad=3&w=300&h=300&q=80"
|
src="https://images.unsplash.com/photo-1541101767792-f9b2b1c4f127?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&&auto=format&fit=facearea&facepad=3&w=300&h=300&q=80" alt="Image Description"
|
||||||
/>
|
/>
|
||||||
<Avatar
|
<Avatar
|
||||||
src="https://images.unsplash.com/photo-1492562080023-ab3db95bfbce?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=facearea&facepad=2&w=300&h=300&q=80"
|
src="https://images.unsplash.com/photo-1492562080023-ab3db95bfbce?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=facearea&facepad=2&w=300&h=300&q=80" alt="Image Description"
|
||||||
/>
|
/>
|
||||||
<span
|
<span
|
||||||
class="inline-flex h-8 w-8 items-center justify-center rounded-full bg-zinc-800 ring-2 ring-white dark:bg-zinc-900 dark:ring-zinc-800"
|
class="inline-flex h-8 w-8 items-center justify-center rounded-full bg-zinc-800 ring-2 ring-white dark:bg-zinc-900 dark:ring-zinc-800"
|
||||||
|
|
Loading…
Add table
Reference in a new issue