File tree Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 8
8
9
9
## Version History
10
10
11
+ ### v0.0.5
12
+
13
+ - Added the remaining SEO fixes.
14
+
11
15
### v0.0.4
12
16
13
17
- Added a fix for the 192x192 and 512x512 favicons.
Original file line number Diff line number Diff line change @@ -27,6 +27,12 @@ export default function App({ Component }: PageProps) {
27
27
/>
28
28
< meta name = "apple-mobile-web-app-title" content = "Lunchbox" />
29
29
< link rel = "manifest" href = "/site.webmanifest" />
30
+
31
+ { /* SEO */ }
32
+ < meta
33
+ name = "description"
34
+ content = "This is the Lunchbox website source."
35
+ />
30
36
</ head >
31
37
< Body >
32
38
< Component />
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ const Particle = (props: { symbol: string; name: string; color: string }) => (
28
28
) }
29
29
href = { `https://jsr.io/@lunchbox/ui/doc/particles/~/${ props . name } ` }
30
30
tabIndex = { 0 }
31
+ title = { `Link to the documentation for the ${ props . name } particle.` }
31
32
>
32
33
< div class = "text-4xl mt-1/8" > { props . symbol } </ div >
33
34
< div > { props . name } </ div >
@@ -44,6 +45,7 @@ function PeriodicTable() {
44
45
atom . group === "" ? < div class = "aspect-square" /> : (
45
46
< a
46
47
href = { `https://jsr.io/@lunchbox/ui/doc/atoms/~/${ atom . name } ` }
48
+ title = { `Link to the documentation for the ${ atom . name } atom.` }
47
49
class = { cn (
48
50
focus ,
49
51
atomGroupColors [ atom . group ] ,
You can’t perform that action at this time.
0 commit comments