diff --git a/public/resource_logos/word_success.png b/public/resource_logos/word_success.png new file mode 100644 index 0000000..37c82ae Binary files /dev/null and b/public/resource_logos/word_success.png differ diff --git a/src/components/ResourceTable.tsx b/src/components/ResourceTable.tsx index 96ab680..a784392 100644 --- a/src/components/ResourceTable.tsx +++ b/src/components/ResourceTable.tsx @@ -1,13 +1,53 @@ +import { PaymentType } from '@prisma/client'; +import Image from 'next/image'; +import Link from 'next/link'; + +const ResourceInfo = () => { + const PriceIcons = ({type}: {type: PaymentType}) => { + + } + + return ( +
+
+ +
+ Word Success logo + + more info + +
+ +
+
+

Word Success

+

Apple and Android

+
+ +
+
+
+ ) +} + +const ResourceDescription = () => { + return ( +
+

Description here

+
+ ) +} const ResourceTable = () => { const ResourceEntry = () => { return ( - + - test + - test + ) @@ -15,26 +55,28 @@ const ResourceTable = () => { return(
- - - - - - - - - - - -
- - Resource - - - - Description - -
+
+ + + + + + + + + + + +
+ + Resource + + + + Description + +
+
); };