Skip to content

Commit 5fb1f32

Browse files
feat(seo): add JSON-LD ConferenceEvent schema
1 parent f18844a commit 5fb1f32

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

src/pages/index.tsx

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,39 @@ const Home = () => (
3232
content="Join the fun 🥳🎉🍕 on 9th May 2026"
3333
/>
3434
<meta name="photo-attribution" content="Photo by --todo (--url todo)" />
35+
<script
36+
type="application/ld+json"
37+
dangerouslySetInnerHTML={{
38+
__html: JSON.stringify({
39+
"@context": "https://schema.org",
40+
"@type": "ConferenceEvent",
41+
name: "Warsaw Python Pizza",
42+
url: "https://warsaw.python.pizza",
43+
startDate: "2026-05-09",
44+
endDate: "2026-05-09",
45+
location: {
46+
"@type": "Place",
47+
name: "PJAIT building A, Koszykowa 86",
48+
address: {
49+
"@type": "PostalAddress",
50+
addressLocality: "Warsaw",
51+
addressCountry: "PL",
52+
},
53+
},
54+
hasParticipationOffer: {
55+
"@type": "Offer",
56+
name: "Call for Proposals",
57+
url: "https://forms.gle/5pqj68ES9ENaGPBf6",
58+
availabilityEnds: "2026-04-12",
59+
},
60+
hasSponsorshipOffer: {
61+
"@type": "Offer",
62+
name: "Sponsor Packages",
63+
url: "https://warsaw.python.pizza/#sponsors",
64+
},
65+
}),
66+
}}
67+
/>
3568
</Head>
3669
<Header />
3770
<Hero />

0 commit comments

Comments
 (0)