Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve SEO descriptions #34

Merged
merged 2 commits into from
Oct 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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