Skip to content

Commit eb3b7da

Browse files
committed
fix: add alt tag to logos
1 parent acaa587 commit eb3b7da

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

components/logo.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
export const Logo = () => {
22
return (
3-
<img src="/adelfa-logo.svg" alt="Logo" style={{ width: 35, height: 35 }} />
3+
<img src="/adelfa-logo.svg" alt="Adelfa logo" style={{ width: 35, height: 35 }} />
44
);
55
};
66

77
export const SmallLogo = () => {
88
return (
99
<img
1010
src="/adelfa-logo.svg"
11-
alt="Logo"
11+
alt="Adelfa logo"
1212
style={{ width: 20, height: 20, filter: "grayscale(100%)" }}
1313
/>
1414
);

source.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import adelfaGrammar from "./syntax/adelfa.tmLanguage.json";
1111
import lfGrammar from "./syntax/lf.tmLanguage.json";
1212

1313
const adelfaIcon =
14-
'<img src="/adelfa-logo.svg" style="width:14px;height:14px;filter:grayscale(100%)" />';
14+
'<img src="/adelfa-logo.svg" style="width:14px;height:14px;filter:grayscale(100%)" alt="Adelfa logo" />';
1515

1616
export const docs = defineDocs({
1717
dir: "content/docs",

0 commit comments

Comments
 (0)