Skip to content

Commit f9afbdf

Browse files
authored
Merge pull request #27 from lassiecoder/staging
feat: added link-preview metadata
2 parents 7aaf038 + 5fa60ec commit f9afbdf

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

src/app/head.tsx

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
export default function Head() {
2+
return (
3+
<>
4+
<title>lassiecoder&apos;s portfolio</title>
5+
<meta
6+
name="Priyanka Sharma (lassiecoder)"
7+
content="Crafting compelling narratives through design, merging creativity with functionality seamlessly."
8+
/>
9+
10+
{/* Open Graph */}
11+
<meta property="og:title" content="Priyanka Sharma (lassiecoder)" />
12+
<meta
13+
property="og:description"
14+
content="She/her 👩🏻‍💼 | AWS re:Invent All Builders Welcome Grant 2025 | 5+ Years #BuildingInTech | #JavaScript | #TypeScript | #ReactNative | #ReactJS | #TechnicalWriter"
15+
/>
16+
<meta
17+
property="og:image"
18+
content="https://avatars.githubusercontent.com/u/17312616?v=4"
19+
/>
20+
<meta property="og:url" content="https://lassiecoder.com" />
21+
<meta property="og:type" content="portfolio" />
22+
23+
{/* Twitter */}
24+
{/* <meta name="twitter:card" content="summary_large_image" />
25+
<meta name="twitter:title" content="humanise’s Portfolio" />
26+
<meta
27+
name="twitter:description"
28+
content="Developer portfolio with projects and experience."
29+
/>
30+
<meta name="twitter:image" content="https://yourdomain.com/preview.png" /> */}
31+
</>
32+
);
33+
}

0 commit comments

Comments
 (0)