Skip to content

Commit 4f61a89

Browse files
committed
fix: accessibility and seo
1 parent ee5f3b4 commit 4f61a89

File tree

4 files changed

+13
-0
lines changed

4 files changed

+13
-0
lines changed

index.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,14 @@
1919

2020
<meta charset="UTF-8" />
2121
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
22+
<meta
23+
name="description"
24+
content="Kali Linux Terminal like portfolio website"
25+
/>
26+
<meta
27+
name="keywords"
28+
content="kali,linux,kali linux,kali-linux,terminal,cli,cmd,worldskills,champion,world,medal,gold,programmer,software,engineer,web,full-stack,frontend,backend"
29+
/>
2230
<title>root@kali: ~</title>
2331

2432
<style>

public/robots.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# https://www.robotstxt.org/robotstxt.html
2+
User-agent: *
3+
Disallow:

src/components/terminal/TerminalHeader.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ const TerminalHeader: FC<TerminalHeaderProps> = () => {
2121
<div className="h-4 w-4 rounded-full border border-solid border-black/[.3] bg-kali-gray-dark" />
2222

2323
<button
24+
aria-label="Close terminal"
2425
type="button"
2526
className="relative h-4 w-4 cursor-pointer rounded-full border border-solid border-black/[.5] bg-kali-blue-bg text-base text-black transition-all hover:bg-kali-blue"
2627
>

src/components/terminal/TerminalPromptInput.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ const TerminalPromptInput: FC<TerminalPromptInputProps> = ({ onEnter }) => {
2121
return (
2222
<form onSubmit={handleSubmit} className="relative w-full">
2323
<input
24+
aria-label="Terminal input"
2425
autoFocus
2526
onFocus={() => setInputFocus(true)}
2627
onBlur={(e) => {

0 commit comments

Comments
 (0)