Skip to content

Commit

Permalink
Fixes structured data on about page
Browse files Browse the repository at this point in the history
  • Loading branch information
a-poor committed Dec 29, 2024
1 parent c1f04e0 commit 99b21ab
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions app/routes/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,15 +111,18 @@ export default function Page() {
</div>
<script type="application/ld+json" dangerouslySetInnerHTML={{ __html: JSON.stringify({
"@context": "https://schema.org",
"@type": "Person",
name: "Austin Poor",
url: "https://austinppoor.com/about",
image: "/images/austin-and-sandwich.webp",
sameAs: [
"https://github.com/a-poor",
"https://linkedin.com/in/austinpoor",
"https://bsky.app/profile/austinpoor.com",
],
"@type": "ProfilePage",
mainEntity: {
"@type": "Person",
name: "Austin Poor",
url: "https://austinpoor.com/about",
image: "/images/austin-and-sandwich.webp",
sameAs: [
"https://github.com/a-poor",
"https://linkedin.com/in/austinpoor",
"https://bsky.app/profile/austinpoor.com",
],
},
})}}
/>
</>
Expand Down

0 comments on commit 99b21ab

Please sign in to comment.