+
+
+
{users.map((user, index) => (
))}
-
-
+
+
+ Lume
+
+ v{version}
);
diff --git a/src/components/columns/navigator/newsfeed/index.tsx b/src/components/columns/navigator/newsfeed/index.tsx
index 7cb204b4..fc2c16e7 100644
--- a/src/components/columns/navigator/newsfeed/index.tsx
+++ b/src/components/columns/navigator/newsfeed/index.tsx
@@ -29,7 +29,7 @@ export default function Newsfeed() {
className="flex h-8 items-center gap-2.5 rounded-md px-2.5 text-sm font-medium hover:bg-zinc-900"
>
-
+
Following
@@ -39,7 +39,7 @@ export default function Newsfeed() {
className="flex h-8 items-center gap-2.5 rounded-md px-2.5 text-sm font-medium hover:bg-zinc-900"
>
-
+
Circle
diff --git a/src/components/imageWithFallback.tsx b/src/components/imageWithFallback.tsx
index 255eb790..268b908f 100644
--- a/src/components/imageWithFallback.tsx
+++ b/src/components/imageWithFallback.tsx
@@ -26,6 +26,7 @@ export const ImageWithFallback = memo(function ImageWithFallback({
size={44}
name={alt}
variant="beam"
+ square={true}
colors={['#FEE2E2', '#FEF3C7', '#F59E0B', '#EC4899', '#D946EF', '#8B5CF6']}
/>
) : (
diff --git a/src/components/user/extend.tsx b/src/components/user/extend.tsx
index a5c6e7c2..1c38917c 100644
--- a/src/components/user/extend.tsx
+++ b/src/components/user/extend.tsx
@@ -55,14 +55,20 @@ export const UserExtend = memo(function UserExtend({ pubkey, time }: { pubkey: s
return (
-
+
{profile.picture ? (
-
+
) : (
)}
diff --git a/src/components/user/mini.tsx b/src/components/user/mini.tsx
index 9a449aa7..334cf700 100644
--- a/src/components/user/mini.tsx
+++ b/src/components/user/mini.tsx
@@ -50,14 +50,15 @@ export const UserMini = memo(function UserMini({ pubkey }: { pubkey: string }) {
return (
-
+
{profile.picture ? (
-
+
) : (
)}
diff --git a/src/pages/explore.tsx b/src/pages/explore.tsx
new file mode 100644
index 00000000..f37272fc
--- /dev/null
+++ b/src/pages/explore.tsx
@@ -0,0 +1,24 @@
+import BaseLayout from '@layouts/base';
+import WithSidebarLayout from '@layouts/withSidebar';
+
+import { JSXElementConstructor, ReactElement, ReactFragment, ReactPortal } from 'react';
+
+export default function Page() {
+ return <>>;
+}
+
+Page.getLayout = function getLayout(
+ page:
+ | string
+ | number
+ | boolean
+ | ReactElement
>
+ | ReactFragment
+ | ReactPortal
+) {
+ return (
+
+ {page}
+
+ );
+};