Skip to content

Commit

Permalink
edit schema structured data position
Browse files Browse the repository at this point in the history
  • Loading branch information
jones58 committed Dec 11, 2024
1 parent bb78d89 commit 4e9ff92
Showing 1 changed file with 15 additions and 16 deletions.
31 changes: 15 additions & 16 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,21 @@ import "../styles.css";
/>
<meta name="generator" content={Astro.generator} />
<title>Jack Kershaw | Portfolio</title>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Jack Kershaw",
"url": "https://jackkershaw.net",
"jobTitle": "Developer",
"sameAs": [
"https://github.com/jones58",
"https://www.linkedin.com/in/jack-kershaw"
],
"knowsAbout": ["Web Development", "Design", "Typography"],
"description": "A developer and designer based in London, with over ten years of design experience and two years in development."
}
</script>
</head>
<body class="bg-neutral-100">
<Header client:load />
Expand All @@ -45,19 +60,3 @@ import "../styles.css";
<Footer client:load />
</body>
</html>

<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Jack Kershaw",
"url": "https://jackkershaw.net",
"jobTitle": "Developer",
"sameAs": [
"https://github.com/jones58",
"https://www.linkedin.com/in/jack-kershaw"
],
"knowsAbout": ["Web Development", "Design", "Typography"],
"description": "A developer and designer based in London, with over ten years of design experience and two years in development."
}
</script>

0 comments on commit 4e9ff92

Please sign in to comment.