diff --git a/packages/frontend/core/src/components/root-app-sidebar/index.tsx b/packages/frontend/core/src/components/root-app-sidebar/index.tsx
index d1019a878..50cc07593 100644
--- a/packages/frontend/core/src/components/root-app-sidebar/index.tsx
+++ b/packages/frontend/core/src/components/root-app-sidebar/index.tsx
@@ -48,6 +48,7 @@ import FavoriteList from '../pure/workspace-slider-bar/favorite/favorite-list';
import { UserWithWorkspaceList } from '../pure/workspace-slider-bar/user-with-workspace-list';
import { WorkspaceCard } from '../pure/workspace-slider-bar/workspace-card';
import ImportPage from './import-page';
+import { AppSidebarJournalButton } from './journal-button';
import { UpdaterButton } from './updater-button';
export type RootAppSidebarProps = {
@@ -254,6 +255,11 @@ export const RootAppSidebar = ({
{t['com.affine.workspaceSubPath.all']()}
+ {runtimeConfig.enableJournal ? (
+
+ ) : null}
{runtimeConfig.enableNewSettingModal ? (
+ );
+};
diff --git a/packages/frontend/i18n/src/resources/en.json b/packages/frontend/i18n/src/resources/en.json
index d6ade28c9..6abf39ac6 100644
--- a/packages/frontend/i18n/src/resources/en.json
+++ b/packages/frontend/i18n/src/resources/en.json
@@ -1048,5 +1048,6 @@
"com.affine.journal.updated-today": "Updated today",
"com.affine.journal.daily-count-created-empty-tips": "You haven't created anything yet",
"com.affine.journal.daily-count-updated-empty-tips": "You haven't updated anything yet",
- "com.affine.journal.conflict-show-more": "{{count}} more articles"
+ "com.affine.journal.conflict-show-more": "{{count}} more articles",
+ "com.affine.journal.app-sidebar-title": "Journals"
}