Skip to content

Commit

Permalink
fix: blog page desc (#81)
Browse files Browse the repository at this point in the history
* fix: blog page desc

* fix: blog page desc
  • Loading branch information
qinluhe authored Oct 25, 2024
1 parent 3a84b3b commit dee0e32
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/blog/feed.xml/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export async function GET() {
const feed = new RSS({
title: 'AppFlowy Blog | In the Flow',
description:
'Receive the latest updates, stories, and tips from AppFlowy. Offline mode, self-hosting, iOS and Android apps, Markdown editing, GPT-4, Claude, Llama, and real-time team collaboration.',
'Receive the latest updates and tips from AppFlowy. Offline mode, self-hosting, iOS and Android, Markdown editing, GPT-4, Claude, Llama, and team collaboration.',
site_url: site_url,
feed_url: `${site_url}/blog/feed.xml`,
image_url: `${site_url}/appflowy-rss-logo.png`,
Expand Down
2 changes: 1 addition & 1 deletion app/blog/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const name = 'AppFlowy Blog | In the Flow';
export async function generateMetadata(): Promise<Metadata> {
const posts = getAllPosts();

const description = `Receive the latest updates from AppFlowy. Offline mode, self-hosting, iOS and Android apps, Markdown editing, GPT-4, Claude, Llama, and real-time team collaboration.`;
const description = `Receive the latest updates and tips from AppFlowy. Offline mode, self-hosting, iOS and Android, Markdown editing, GPT-4, Claude, Llama, and team collaboration.`;

return {
title: name,
Expand Down

0 comments on commit dee0e32

Please sign in to comment.