Skip to content

Commit

Permalink
Add benchmark changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
RomainJolidon committed Jan 9, 2024
1 parent 195a764 commit eee55d9
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 2 deletions.
2 changes: 2 additions & 0 deletions lib/get-articles-slugs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,7 @@ export function getArticleSlugs() {
return file.name.replace(".mdx", "");
})
.filter((article) => article);
console.log(articles);

return articles;
}
40 changes: 40 additions & 0 deletions pages/changelogs/2024-01-08-benchmark-page.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
import { MdxLayout } from "components/mdx-layout.tsx";

export const meta = {
slug: "2024-01-08-benchmark-page",
publishedAt: "2024-01-08T12:00:00.000Z",
title: "📊 Introducing Benchmarks",
headerImage: `${process.env.NEXT_PUBLIC_APP_HOST}/imgs/survey-audio-video.gif`,
authors: [
{
name: "Romain Jolidon",
description: "Fullstack Developer",
avatarUrl: `${process.env.NEXT_PUBLIC_APP_HOST}/authors/romain-jolidon.png`,
},
{
name: "Salomé Cousseau",
description: "Custom Success Manager",
avatarUrl: `${process.env.NEXT_PUBLIC_APP_HOST}/authors/salome-cousseau.png`,
},
{
name: "Simon Robic",
description: "Chief Product Officer",
avatarUrl: `${process.env.NEXT_PUBLIC_APP_HOST}/authors/simon-robic.png`,
},
],
};


Introducing Benchmark Page Feature!

We're thrilled to announce the release of our latest feature, the Benchmark Page!

This powerful addition allows you to explore industry-specific statistics and compare yourself to top performers within it.

Gain valuable insights into user feedback and behavioral events, enabling you to benchmark your performance against industry standards.

export default ({ children, ...rest }) => (
<MdxLayout meta={meta} {...rest}>
{children}
</MdxLayout>
);
Binary file added public/authors/salome-cousseau.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 9 additions & 2 deletions public/rss.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,22 @@
<title>Screeb Changelog</title>
<link>http://localhost:3000</link>
<description>How Screeb gets better every week</description>
<lastBuildDate>Wed, 25 Oct 2023 07:54:06 GMT</lastBuildDate>
<lastBuildDate>Tue, 09 Jan 2024 15:30:49 GMT</lastBuildDate>
<docs>https://validator.w3.org/feed/docs/rss2.html</docs>
<generator>Feed for Screeb changelog</generator>
<image>
<title>Screeb Changelog</title>
<url>http://localhost:3000/favicon.ico</url>
<link>http://localhost:3000</link>
</image>
<copyright>All rights reserved 2023, Screeb</copyright>
<copyright>All rights reserved 2024, Screeb</copyright>
<item>
<title><![CDATA[📊 Introducing Benchmarks]]></title>
<link>http://localhost:3000/changelogs/2024-01-08-benchmark-page</link>
<guid>http://localhost:3000/changelogs/2024-01-08-benchmark-page</guid>
<pubDate>Mon, 08 Jan 2024 12:00:00 GMT</pubDate>
<enclosure url="http://localhost:3000/imgs/survey-audio-video.gif" length="0" type="image/gif"/>
</item>
<item>
<title><![CDATA[🎥 Introducing Audio & Video Surveys]]></title>
<link>http://localhost:3000/changelogs/2023-10-24-survey-audio-video</link>
Expand Down

0 comments on commit eee55d9

Please sign in to comment.