Skip to content

Commit

Permalink
Merge pull request #34 from usethesource/seo-description
Browse files Browse the repository at this point in the history
Improve SEO descriptions
  • Loading branch information
DavyLandman authored Oct 26, 2023
2 parents d95fb73 + 0ed20fe commit e740d67
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ const config = {
organizationName: 'usethesource', // Usually your GitHub org/user name.
projectName: 'rascal-website', // Usually your repo name.
deploymentBranch: 'gh-pages-v2',
customFields: {
description: 'The Rascal Meta Programming Language - The one-stop shop for metaprogramming',
},
presets: [
[
'classic',
Expand All @@ -32,6 +35,8 @@ const config = {
// `https://github.com/usethesource/rascal/tree/main/src/org/rascalmpl/courses/${docPath.substring(4)}`,
},
blog: {
blogTitle: 'Rascal MPL Blog',
blogDescription: 'Stories about using Rascal MPL in real life',
showReadingTime: true,
blogSidebarTitle: 'All posts',
blogSidebarCount: 'ALL',
Expand Down
5 changes: 3 additions & 2 deletions release-notes/index.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: "Release Notes"
title: "Rascal MPL - Release Notes"
description: "Releases and changelogs for Rascal MPL"
sidebar_position: 0
---

On the left you can find all our (recent) release notes.
On the left you can find all our (recent) release notes.
2 changes: 1 addition & 1 deletion src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default function Home() {
return (
<Layout
title={`${siteConfig.title}`}
description={`${siteConfig.description}`}>
description={`${siteConfig.customFields.description}`}>
<HomepageHeader />
<main>
<HomepageFeatures />
Expand Down

0 comments on commit e740d67

Please sign in to comment.