Skip to content

Commit 390ec51

Browse files
v0.0.5
1 parent 15b0fb2 commit 390ec51

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88

99
## Version History
1010

11+
### v0.0.5
12+
13+
- Added the remaining SEO fixes.
14+
1115
### v0.0.4
1216

1317
- Added a fix for the 192x192 and 512x512 favicons.

routes/_app.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@ export default function App({ Component }: PageProps) {
2727
/>
2828
<meta name="apple-mobile-web-app-title" content="Lunchbox" />
2929
<link rel="manifest" href="/site.webmanifest" />
30+
31+
{/* SEO */}
32+
<meta
33+
name="description"
34+
content="This is the Lunchbox website source."
35+
/>
3036
</head>
3137
<Body>
3238
<Component />

routes/index.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ const Particle = (props: { symbol: string; name: string; color: string }) => (
2828
)}
2929
href={`https://jsr.io/@lunchbox/ui/doc/particles/~/${props.name}`}
3030
tabIndex={0}
31+
title={`Link to the documentation for the ${props.name} particle.`}
3132
>
3233
<div class="text-4xl mt-1/8">{props.symbol}</div>
3334
<div>{props.name}</div>
@@ -44,6 +45,7 @@ function PeriodicTable() {
4445
atom.group === "" ? <div class="aspect-square" /> : (
4546
<a
4647
href={`https://jsr.io/@lunchbox/ui/doc/atoms/~/${atom.name}`}
48+
title={`Link to the documentation for the ${atom.name} atom.`}
4749
class={cn(
4850
focus,
4951
atomGroupColors[atom.group],

0 commit comments

Comments
 (0)