import { PaymentType } from '@prisma/client'; import { CurrencyDollarIcon } from '@heroicons/react/24/solid' import Image from 'next/image'; import Link from 'next/link'; const ResourceInfo = () => { const PriceIcons = ({type}: {type: PaymentType}) => { return (
) } return (
Word Success logo more info

Word Success

Apple and Android

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

Description here

) } const ResourceTable = () => { const ResourceEntry = () => { return ( ) } return(
Resource Description
); }; export default ResourceTable;