Skip to content

Commit

Permalink
chore():
Browse files Browse the repository at this point in the history
  • Loading branch information
didd committed Nov 20, 2024
1 parent 46bef64 commit 1ac662e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
1 change: 1 addition & 0 deletions extensions/apps/extensions/src/components/explore.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ export const Explore: React.FC<TExploreProps> = props => {
coverImageSrc={popularExtensions[0]?.coverImageSrc}
displayName={popularExtensions[0]?.displayName}
applicationType={popularExtensions[0]?.applicationType}
author={popularExtensions[0]?.author}
description={popularExtensions[0]?.description}
featured={true}
action={popularExtensions[0]?.action}
Expand Down
13 changes: 12 additions & 1 deletion extensions/apps/extensions/src/components/pages/explore.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Button from '@akashaorg/design-system-core/lib/components/Button';
import routes, { DEVELOPER_MODE, EXTENSIONS } from '../../routes';
import { useTranslation } from 'react-i18next';
import { useNavigate } from '@tanstack/react-router';
import { useRootComponentProps } from '@akashaorg/ui-awf-hooks';
import { transformSource, useRootComponentProps } from '@akashaorg/ui-awf-hooks';
import { ArrowLongRightIcon } from '@heroicons/react/24/outline';
import { Explore } from '../explore';
import { AkashaAppApplicationType } from '@akashaorg/typings/lib/sdk/graphql-types-new';
Expand Down Expand Up @@ -47,6 +47,17 @@ export const ExplorePage: React.FC<unknown> = () => {
{
id: '',
coverImageSrc: null,
author: {
profileDID: 'k2t6wzhkhabz1ftv1zfwnlrzcz5yyg0fxyf580fkvzr22g8ra8fa8y7hpdz0jc',
name: 'AKASHA',
alternativeAvatars: null,
avatar: transformSource({
src: 'ipfs://bafkreidk5aoxy2bde5nc6w4l6slxos3lbj5n75y766irlrb7vnfxgv4hwu',
width: 192,
height: 192,
}),
nsfw: false,
},
displayName: t('Vibes Console'),
description: `${t("Dive into AKASHA WORLD's Vibes Console!")} 💫 ${t("Your spot to become a moderator, explore applicants, and curate content. Together, let's shape our vibrant community!")} 🌟🔍✨`,
applicationType: AkashaAppApplicationType.App,
Expand Down

0 comments on commit 1ac662e

Please sign in to comment.