Skip to content

Commit

Permalink
chore(docs): roadmap SEO
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-basten committed Nov 8, 2024
1 parent 586393f commit 1561f0d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/src/pages/roadmap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ import {
mdiFaceRecognition,
mdiVideo,
mdiWeb,
mdiDatabase,
mdiDatabaseOutline,
} from '@mdi/js';
import Layout from '@theme/Layout';
Expand Down Expand Up @@ -154,6 +153,9 @@ const weirdTags = {
'v1.2.0': 'v0.2-dev ',
};

const title = 'Roadmap';
const description = 'A list of future plans and goals, as well as past achievements and milestones.';

const withLanguage = (date: Date) => (language: string) => date.toLocaleDateString(language);

type Base = { icon: string; iconColor?: React.CSSProperties['color']; title: string; description: string };
Expand Down Expand Up @@ -870,14 +872,12 @@ const milestones: Item[] = [

export default function MilestonePage(): JSX.Element {
return (
<Layout title="Milestones" description="History of Immich">
<Layout title={title} description={description}>
<section className="my-8">
<h1 className="md:text-6xl text-center mb-10 text-immich-primary dark:text-immich-dark-primary px-2">
Roadmap
{title}
</h1>
<p className="text-center text-xl px-2">
A list of future plans and goals, as well as past achievements and milestones.
</p>
<p className="text-center text-xl px-2">{description}</p>
<div className="flex justify-around mt-8 w-full max-w-full">
<Timeline items={[...roadmap, ...milestones]} />
</div>
Expand Down

0 comments on commit 1561f0d

Please sign in to comment.