diff --git a/web/src/components/Navigation.tsx b/web/src/components/Navigation.tsx index 6f7cc00c3..572e26134 100644 --- a/web/src/components/Navigation.tsx +++ b/web/src/components/Navigation.tsx @@ -15,7 +15,11 @@ interface NavLinkItem { icon: React.ReactNode; } -const Navigation = () => { +interface Props { + className?: string; +} + +const Navigation = (props: Props) => { const t = useTranslate(); const user = useCurrentUser(); const inboxStore = useInboxStore(); @@ -110,7 +114,12 @@ const Navigation = () => { : [exploreNavLink, signInNavLink, aboutNavLink]; return ( -
+
{navLinks.map((navLink) => ( diff --git a/web/src/components/UserBanner.tsx b/web/src/components/UserBanner.tsx index 938f7cf3f..ada411d3a 100644 --- a/web/src/components/UserBanner.tsx +++ b/web/src/components/UserBanner.tsx @@ -23,7 +23,7 @@ const UserBanner = () => { +
{title}
diff --git a/web/src/layouts/Root.tsx b/web/src/layouts/Root.tsx index a4fa6079e..6a17bcd07 100644 --- a/web/src/layouts/Root.tsx +++ b/web/src/layouts/Root.tsx @@ -11,8 +11,8 @@ function Root() {
{sm && ( -
- +
+
)}
diff --git a/web/src/pages/About.tsx b/web/src/pages/About.tsx index b21009f57..f306a3459 100644 --- a/web/src/pages/About.tsx +++ b/web/src/pages/About.tsx @@ -8,22 +8,24 @@ const About = () => {
- + + memos +

A privacy-first, lightweight note-taking service. Easily capture and share your great thoughts.

- + GitHub Repo - + Offical Website - + Blogs - + Documents