diff --git a/docs/changelogs/2025-02-15-changelog.mdx b/docs/changelogs/2025-02-15-changelog.mdx new file mode 100644 index 000000000..9081ee30f --- /dev/null +++ b/docs/changelogs/2025-02-15-changelog.mdx @@ -0,0 +1,31 @@ +--- +title: Welcome Docusaurus +description: This is my first post on Docusaurus. +slug: welcome-docusaurus-v2 +authors: + - name: Joel Marcey + title: Co-creator of Docusaurus 1 + url: https://github.com/JoelMarcey + image_url: https://github.com/JoelMarcey.png + socials: + x: joelmarcey + github: JoelMarcey + - name: Sébastien Lorber + title: Docusaurus maintainer + url: https://sebastienlorber.com + image_url: https://github.com/slorber.png + socials: + x: sebastienlorber + github: slorber +tags: [hello, docusaurus-v2] +image: https://i.imgur.com/mErPwqL.png +hide_table_of_contents: false +--- + +Welcome to this blog. This blog is created with [**Docusaurus 2**](https://docusaurus.io/). + +{/* truncate */} + +This is my first post on Docusaurus 2. + +A whole bunch of exploration to follow. \ No newline at end of file diff --git a/docs/changelogs/2025-02-16-changelog-copy.mdx b/docs/changelogs/2025-02-16-changelog-copy.mdx new file mode 100644 index 000000000..9081ee30f --- /dev/null +++ b/docs/changelogs/2025-02-16-changelog-copy.mdx @@ -0,0 +1,31 @@ +--- +title: Welcome Docusaurus +description: This is my first post on Docusaurus. +slug: welcome-docusaurus-v2 +authors: + - name: Joel Marcey + title: Co-creator of Docusaurus 1 + url: https://github.com/JoelMarcey + image_url: https://github.com/JoelMarcey.png + socials: + x: joelmarcey + github: JoelMarcey + - name: Sébastien Lorber + title: Docusaurus maintainer + url: https://sebastienlorber.com + image_url: https://github.com/slorber.png + socials: + x: sebastienlorber + github: slorber +tags: [hello, docusaurus-v2] +image: https://i.imgur.com/mErPwqL.png +hide_table_of_contents: false +--- + +Welcome to this blog. This blog is created with [**Docusaurus 2**](https://docusaurus.io/). + +{/* truncate */} + +This is my first post on Docusaurus 2. + +A whole bunch of exploration to follow. \ No newline at end of file diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index fee0f9180..a34a39342 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -54,6 +54,15 @@ module.exports = { showLastUpdateTime: true, }, ], + [ + "@docusaurus/plugin-content-blog", + { + id: "changelogs", + path: "changelogs", + routeBasePath: "changelogs", + editUrl: "https://github.com/confident-ai/deepeval/edit/main/docs/", + }, + ], ], title: "DeepEval - The Open-Source LLM Evaluation Framework", @@ -160,6 +169,11 @@ module.exports = { position: "left", label: "Blogs", }, + { + to: "changelogs", + label: "Changelogs", + position: "left", + }, { href: "https://confident-ai.com", className: "header-confident-link", diff --git a/docs/package.json b/docs/package.json index fea1d5888..4a6de613f 100644 --- a/docs/package.json +++ b/docs/package.json @@ -15,6 +15,7 @@ }, "dependencies": { "@docusaurus/core": "2.4.1", + "@docusaurus/plugin-content-blog": "2.4.1", "@docusaurus/preset-classic": "2.4.1", "@mdx-js/react": "^1.6.22", "clsx": "^1.2.1",