Added SEO to website pages (#5106)

Added SEO to Contributors, Contributor, User Guide (+ each of it's
pages), Changelog, OSS friends: titles, descriptions

Co-authored-by: Ady Beraud <a.beraud96@gmail.com>
This commit is contained in:
Ady Beraud
2024-04-24 09:13:59 +03:00
committed by GitHub
parent dc82ff56b8
commit fda0c3c93c
8 changed files with 59 additions and 8 deletions

View File

@ -19,7 +19,11 @@ export function generateMetadata({
params: { slug: string };
}): Metadata {
return {
title: params.slug + ' | Contributors',
title: 'Twenty - ' + params.slug,
description:
'Explore the impactful contributions of ' +
params.slug +
' on the Twenty Github Repo. Discover their merged pull requests, ongoing work, and top ranking. Join and contribute to the #1 Open-Source CRM thriving community!',
};
}

View File

@ -7,6 +7,13 @@ import { ContentContainer } from '@/app/_components/oss-friends/ContentContainer
import { findAll } from '@/database/database';
import { pullRequestModel, userModel } from '@/database/model';
export const metadata = {
title: 'Twenty - Contributors',
description:
'Discover the brilliant minds behind Twenty.com. Meet our contributors and explore how their expertise contributes to making Twenty the leading open-source CRM. Join our community today.',
icons: '/images/core/logo.svg',
};
interface Contributor {
id: string;
avatarUrl: string;