Skip to content

Commit b9cb005

Browse files
chore: adds meta tags
1 parent 9cff722 commit b9cb005

File tree

2 files changed

+47
-1
lines changed

2 files changed

+47
-1
lines changed

public/og-image.jpg

38.9 KB
Loading

src/entry-server.tsx

Lines changed: 47 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,52 @@ export default createHandler((event) => {
2424
<html lang={lang} class={`${theme} overscroll-none`}>
2525
<head>
2626
<title>Valerio Pescatori - Frontend Engineer</title>
27+
{/* Description, keywords, canonical url */}
2728
<meta
2829
name="description"
29-
content="Valerio Pescatori, Frontend Engineer"
30+
content="Portfolio di Valerio Pescatori, Frontend Engineer specializzato in React, Angular e UI moderne. Scopri progetti, esperienze e contatti."
3031
/>
32+
33+
<meta
34+
name="keywords"
35+
content="Valerio Pescatori, Frontend Engineer, React Developer, Angular, UI Developer, Web Developer"
36+
/>
37+
<link rel="canonical" href="https://valeriopescatori.dev/" />
38+
39+
{/* OG */}
40+
<meta
41+
property="og:title"
42+
content="Valerio Pescatori - Frontend Engineer"
43+
/>
44+
<meta
45+
property="og:description"
46+
content="Frontend Engineer specializzato in React, Next.js e UI moderne. Scopri i miei progetti e la mia esperienza."
47+
/>
48+
<meta
49+
property="og:image"
50+
content="https://valeriopescatori.dev/og-image.jpg"
51+
/>
52+
<meta property="og:url" content="https://valeriopescatori.dev/" />
53+
<meta property="og:type" content="website" />
54+
<meta property="og:site_name" content="Valerio Pescatori" />
55+
56+
{/* Twitter */}
57+
<meta name="twitter:card" content="summary_large_image" />
58+
<meta
59+
name="twitter:title"
60+
content="Valerio Pescatori - Frontend Engineer"
61+
/>
62+
<meta
63+
name="twitter:description"
64+
content="Portfolio di Valerio Pescatori, Frontend Engineer specializzato in React e UI moderne."
65+
/>
66+
<meta
67+
name="twitter:image"
68+
content="https://valeriopescatori.dev/og-image.jpg"
69+
/>
70+
71+
{/* Other */}
72+
3173
<meta charset="utf-8" />
3274
<meta
3375
name="viewport"
@@ -37,6 +79,10 @@ export default createHandler((event) => {
3779
{assets}
3880
</head>
3981
<body>
82+
<h1 class="sr-only">Valerio Pescatori</h1>
83+
<h2 class="sr-only">
84+
Frontend Engineer specializzato in React, Angular, Next.js
85+
</h2>
4086
<div id="app">{children}</div>
4187
{scripts}
4288
</body>

0 commit comments

Comments
 (0)