mirror of
https://github.com/immich-app/immich.git
synced 2025-01-07 00:50:23 -05:00
chore(docs): roadmap SEO (#14024)
This commit is contained in:
parent
586393f178
commit
97dbe3236b
1 changed files with 6 additions and 6 deletions
|
@ -74,7 +74,6 @@ import {
|
||||||
mdiFaceRecognition,
|
mdiFaceRecognition,
|
||||||
mdiVideo,
|
mdiVideo,
|
||||||
mdiWeb,
|
mdiWeb,
|
||||||
mdiDatabase,
|
|
||||||
mdiDatabaseOutline,
|
mdiDatabaseOutline,
|
||||||
} from '@mdi/js';
|
} from '@mdi/js';
|
||||||
import Layout from '@theme/Layout';
|
import Layout from '@theme/Layout';
|
||||||
|
@ -154,6 +153,9 @@ const weirdTags = {
|
||||||
'v1.2.0': 'v0.2-dev ',
|
'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);
|
const withLanguage = (date: Date) => (language: string) => date.toLocaleDateString(language);
|
||||||
|
|
||||||
type Base = { icon: string; iconColor?: React.CSSProperties['color']; title: string; description: string };
|
type Base = { icon: string; iconColor?: React.CSSProperties['color']; title: string; description: string };
|
||||||
|
@ -870,14 +872,12 @@ const milestones: Item[] = [
|
||||||
|
|
||||||
export default function MilestonePage(): JSX.Element {
|
export default function MilestonePage(): JSX.Element {
|
||||||
return (
|
return (
|
||||||
<Layout title="Milestones" description="History of Immich">
|
<Layout title={title} description={description}>
|
||||||
<section className="my-8">
|
<section className="my-8">
|
||||||
<h1 className="md:text-6xl text-center mb-10 text-immich-primary dark:text-immich-dark-primary px-2">
|
<h1 className="md:text-6xl text-center mb-10 text-immich-primary dark:text-immich-dark-primary px-2">
|
||||||
Roadmap
|
{title}
|
||||||
</h1>
|
</h1>
|
||||||
<p className="text-center text-xl px-2">
|
<p className="text-center text-xl px-2">{description}</p>
|
||||||
A list of future plans and goals, as well as past achievements and milestones.
|
|
||||||
</p>
|
|
||||||
<div className="flex justify-around mt-8 w-full max-w-full">
|
<div className="flex justify-around mt-8 w-full max-w-full">
|
||||||
<Timeline items={[...roadmap, ...milestones]} />
|
<Timeline items={[...roadmap, ...milestones]} />
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue