-
Jumble
+
+
+
+
diff --git a/src/renderer/src/layouts/PrimaryPageLayout/index.tsx b/src/renderer/src/layouts/PrimaryPageLayout/index.tsx
index 30469df0..f5a259dc 100644
--- a/src/renderer/src/layouts/PrimaryPageLayout/index.tsx
+++ b/src/renderer/src/layouts/PrimaryPageLayout/index.tsx
@@ -1,3 +1,4 @@
+import Logo from '@renderer/assets/Logo'
import AccountButton from '@renderer/components/AccountButton'
import PostButton from '@renderer/components/PostButton'
import RefreshButton from '@renderer/components/RefreshButton'
@@ -79,7 +80,9 @@ function PrimaryPageTitlebar({ visible = true }: { visible?: boolean }) {
visible={visible}
>
diff --git a/src/renderer/src/layouts/SecondaryPageLayout/index.tsx b/src/renderer/src/layouts/SecondaryPageLayout/index.tsx
index 889a00e7..d63a8c7b 100644
--- a/src/renderer/src/layouts/SecondaryPageLayout/index.tsx
+++ b/src/renderer/src/layouts/SecondaryPageLayout/index.tsx
@@ -11,11 +11,13 @@ import { useEffect, useRef, useState } from 'react'
export default function SecondaryPageLayout({
children,
titlebarContent,
- hideBackButton = false
+ hideBackButton = false,
+ hideScrollToTopButton = false
}: {
children?: React.ReactNode
titlebarContent?: React.ReactNode
hideBackButton?: boolean
+ hideScrollToTopButton?: boolean
}): JSX.Element {
const scrollAreaRef = useRef
(null)
const [visible, setVisible] = useState(true)
@@ -50,7 +52,10 @@ export default function SecondaryPageLayout({
{children}
-
+
)
}
diff --git a/src/renderer/src/pages/secondary/HomePage/index.tsx b/src/renderer/src/pages/secondary/HomePage/index.tsx
index 3fa28b8c..d7b18959 100644
--- a/src/renderer/src/pages/secondary/HomePage/index.tsx
+++ b/src/renderer/src/pages/secondary/HomePage/index.tsx
@@ -4,7 +4,7 @@ import { useTranslation } from 'react-i18next'
export default function HomePage() {
const { t } = useTranslation()
return (
-
+
{t('Welcome! 🥳')}