Skip to content

Commit bbd9f9f

Browse files
committed
Add structured data for homepage SEO
1 parent e8236d8 commit bbd9f9f

File tree

3 files changed

+28
-0
lines changed

3 files changed

+28
-0
lines changed

_includes/head.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,6 @@
4141
<link rel="shortcut icon" href="/images/favicon/favicon.png" />
4242
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
4343
<link rel="alternate" type="application/atom+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" />
44+
{% if page.url == "/" %}{% include structured-data.html %}{% endif %}
4445
{% include plausible.html %}
4546
</head>

_includes/structured-data.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<script type="application/ld+json">
2+
{
3+
"@context": "https://schema.org",
4+
"@type": "SoftwareApplication",
5+
"name": "RESTHeart",
6+
"applicationCategory": "DeveloperApplication",
7+
"description": "RESTHeart is a comprehensive backend framework that eliminates boilerplate code with out-of-the-box features including Data APIs (REST, GraphQL, WebSockets), authentication, authorization, security, and extensibility through plugins. Build production-ready backends in minutes.",
8+
"operatingSystem": "Cross-platform",
9+
"offers": {
10+
"@type": "Offer",
11+
"price": "0",
12+
"priceCurrency": "USD"
13+
},
14+
"url": "https://restheart.org",
15+
"sameAs": [
16+
"https://github.com/SoftInstigate/restheart",
17+
"https://cloud.restheart.com/softinstigate"
18+
],
19+
"author": {
20+
"@type": "Organization",
21+
"name": "SoftInstigate",
22+
"url": "https://softinstigate.com"
23+
}
24+
}
25+
</script>

index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
---
22
layout: default
33
stars-bounce: true
4+
title: Complete Backend Development Framework
5+
excerpt: RESTHeart is a comprehensive backend framework that eliminates boilerplate code with out-of-the-box features including Data APIs (REST, GraphQL, WebSockets), authentication, authorization, security, and extensibility through plugins. Build production-ready backends in minutes.
46
---
57

68
<section id="top" class="text-center pt-2 pb-2">

0 commit comments

Comments
 (0)