diff --git a/apps/common/CarouselControls.tsx b/apps/common/CarouselControls.tsx
index 03785f6b..68afa2c1 100644
--- a/apps/common/CarouselControls.tsx
+++ b/apps/common/CarouselControls.tsx
@@ -19,7 +19,7 @@ export function CarouselControls({
}
return (
-
+
{Array(numberOfControls)
.fill('')
diff --git a/apps/common/components/AppCard.tsx b/apps/common/components/AppCard.tsx
index 2692ad08..7a7a8b43 100644
--- a/apps/common/components/AppCard.tsx
+++ b/apps/common/components/AppCard.tsx
@@ -16,7 +16,7 @@ export function AppCard(props: TAppCardProps): ReactElement {
href={props.app.appURI ?? ''}
target={props.app.appURI.startsWith('/') ? '_self' : '_blank'}
className={
- 'group relative hidden h-[240px] min-w-[208px] max-w-[208px] overflow-hidden rounded-lg border border-gray-700/50 bg-gray-900 p-6 hover:bg-gray-600/40 md:block'
+ 'group relative hidden min-w-[208px] max-w-[208px] overflow-hidden rounded-lg border border-gray-700/50 bg-gray-900 p-6 hover:bg-gray-600/40 md:block'
}>
{props.app.name}
-
{props.app.description}
+
{props.app.description}
) : (
-
+
)}
diff --git a/apps/common/components/AppsCarousel.tsx b/apps/common/components/AppsCarousel.tsx
index 56aef861..44337c73 100644
--- a/apps/common/components/AppsCarousel.tsx
+++ b/apps/common/components/AppsCarousel.tsx
@@ -13,8 +13,8 @@ export const AppsCarousel = forwardRef(
ref: ForwardedRef
): ReactElement => {
return (
-
-
+
+
{props.apps?.map((app, i) => {
diff --git a/apps/common/icons/IconCommunity.tsx b/apps/common/icons/IconCommunity.tsx
index 088bc437..53e018ce 100644
--- a/apps/common/icons/IconCommunity.tsx
+++ b/apps/common/icons/IconCommunity.tsx
@@ -1,6 +1,6 @@
import type {ReactElement} from 'react';
-export function IconCommunity(props: React.SVGProps
): ReactElement {
+export function IconYearnApps(props: React.SVGProps): ReactElement {
return (
,
about: ,
vaults: ,
- 'community-apps': ,
+ 'yearn-apps': ,
'yearn-x': ,
integrations:
};
diff --git a/apps/landing/components/sections/WaysToEarn.tsx b/apps/landing/components/sections/WaysToEarn.tsx
index 3a4711c0..9bdc56f1 100644
--- a/apps/landing/components/sections/WaysToEarn.tsx
+++ b/apps/landing/components/sections/WaysToEarn.tsx
@@ -76,11 +76,11 @@ export function WaysToEarn(): ReactElement {
diff --git a/pages/apps/[category].tsx b/pages/apps/[category].tsx
index b805311b..cfe016cf 100644
--- a/pages/apps/[category].tsx
+++ b/pages/apps/[category].tsx
@@ -51,7 +51,10 @@ export default function Index(props: {router: NextRouter}): ReactElement {
-
+
{shuffledApps?.map(app => (
router.push('/apps/community-apps')}
- apps={COMMUNITY_APPS}
+ title={'Yearn Apps'}
+ onExpandClick={async () => router.push('/apps/yearn-apps')}
+ apps={YEARN_APPS}
/>