diff --git a/src/grants/components/grant-card.tsx b/src/grants/components/grant-card.tsx
deleted file mode 100644
index ddc9fe0..0000000
--- a/src/grants/components/grant-card.tsx
+++ /dev/null
@@ -1,12 +0,0 @@
-interface Props {
- id: string;
-}
-
-export const GrantCard = ({ id }: Props) => {
- // TODO: JOB-678
- return (
-
- {`Grant Program ${id}`}
-
- );
-};
diff --git a/src/grants/components/grant-card/grant-card.tsx b/src/grants/components/grant-card/grant-card.tsx
new file mode 100644
index 0000000..772873f
--- /dev/null
+++ b/src/grants/components/grant-card/grant-card.tsx
@@ -0,0 +1,38 @@
+interface Props {
+ id: string;
+}
+
+export const GrantCard = ({ id }: Props) => {
+ // TODO: JOB-678
+ return (
+
+ {`Grant Program ${id}`}
+
+ );
+};
+
+// TODO: Extract to cta-slot for grant-item component
+{
+ /*
+
+ LOGO HERE: {logo}
+
+
+ {url && (
+
+ )}
+ {discord && (
+
+ )}
+ {twitter && (
+
+ )}
+
+
; */
+}
diff --git a/src/grants/components/grant-card/index.ts b/src/grants/components/grant-card/index.ts
new file mode 100644
index 0000000..64175c1
--- /dev/null
+++ b/src/grants/components/grant-card/index.ts
@@ -0,0 +1 @@
+export * from './grant-card';
diff --git a/src/grants/components/grant-item/grant-item.stories.tsx b/src/grants/components/grant-item/grant-item.stories.tsx
index 0a93a03..73ae46a 100644
--- a/src/grants/components/grant-item/grant-item.stories.tsx
+++ b/src/grants/components/grant-item/grant-item.stories.tsx
@@ -8,6 +8,7 @@ const meta: Meta = {
component: GrantItem,
args: {
grant: fakeGrant,
+ cta: null,
},
};
diff --git a/src/grants/components/grant-item/grant-item.tsx b/src/grants/components/grant-item/grant-item.tsx
index cd490bf..c4469be 100644
--- a/src/grants/components/grant-item/grant-item.tsx
+++ b/src/grants/components/grant-item/grant-item.tsx
@@ -1,17 +1,15 @@
import Link from 'next/link';
-import { Avatar, AvatarGroup, Button } from '@nextui-org/react';
+import { Avatar, AvatarGroup } from '@nextui-org/react';
import { formatNumber } from '@/shared/utils/format-number';
import { GRANT_TEST_IDS } from '@/grants/core/constants';
import { Grant } from '@/grants/core/types';
-import { DiscordIcon } from '@/grants/components/icons/discord-icon';
-import { TwitterIcon } from '@/grants/components/icons/twitter-icon';
-import { WebIcon } from '@/grants/components/icons/web-icon';
interface Props {
- grant: Grant;
+ grant: Omit;
+ cta: React.ReactNode;
}
export const GrantItem = (props: Props) => {
@@ -28,11 +26,8 @@ export const GrantItem = (props: Props) => {
categories,
type,
reputations,
- logo,
- url,
- discord,
- twitter,
},
+ cta,
} = props;
const href = `/grants/${id}`;
@@ -95,28 +90,7 @@ export const GrantItem = (props: Props) => {
-
-
- LOGO HERE: {logo}
-
-
- {url && (
-
- )}
- {discord && (
-
- )}
- {twitter && (
-
- )}
-
-
+ {cta}
);
};
diff --git a/src/grants/components/grant-list/cta.tsx b/src/grants/components/grant-list/cta.tsx
new file mode 100644
index 0000000..022e312
--- /dev/null
+++ b/src/grants/components/grant-list/cta.tsx
@@ -0,0 +1,31 @@
+import { Button } from '@nextui-org/react';
+
+const CaretRightIcon = () => (
+
+);
+
+export const GrantListCTA = () => {
+ return (
+
+ );
+};
diff --git a/src/grants/components/grant-list.tsx b/src/grants/components/grant-list/grant-list.tsx
similarity index 58%
rename from src/grants/components/grant-list.tsx
rename to src/grants/components/grant-list/grant-list.tsx
index 4770e12..1db4a06 100644
--- a/src/grants/components/grant-list.tsx
+++ b/src/grants/components/grant-list/grant-list.tsx
@@ -1,6 +1,8 @@
+import { GrantItem } from '@/grants/components/grant-item';
+
import { fakeGrant } from '@/grants/testutils/fake-grant';
-import { GrantItem } from './grant-item';
+import { GrantListCTA } from './cta';
export const GrantList = () => {
// TODO: JOB-682
@@ -8,7 +10,7 @@ export const GrantList = () => {
return (
{Array.from({ length: 64 }).map((_, index) => (
-
+ } />
))}
);
diff --git a/src/grants/components/grant-list/index.ts b/src/grants/components/grant-list/index.ts
new file mode 100644
index 0000000..7ccbd5b
--- /dev/null
+++ b/src/grants/components/grant-list/index.ts
@@ -0,0 +1 @@
+export * from './grant-list';
diff --git a/src/grants/pages/grant-list-page.tsx b/src/grants/pages/grant-list-page.tsx
index 985aa86..62b29cd 100644
--- a/src/grants/pages/grant-list-page.tsx
+++ b/src/grants/pages/grant-list-page.tsx
@@ -1,4 +1,4 @@
-import { GrantList } from '@/grants/components/grant-list';
+import { GrantList } from '@/grants/components/grant-list/grant-list';
export const GrantListPage = () => {
return (