diff --git a/src/pages/Feature/index.tsx b/src/pages/Feature/index.tsx index 0c51b46..9a2a30b 100644 --- a/src/pages/Feature/index.tsx +++ b/src/pages/Feature/index.tsx @@ -4,7 +4,14 @@ import { useLazyQuery, useReactiveVar } from '@apollo/client'; import { Redirect } from 'react-router'; import { roleVar } from '../../graphql/state'; import { Empty, Settings } from '../../assets'; -import { Box, Text, Button, Spinner } from '../../components'; +import { + Box, + Text, + Button, + Spinner, + ImagePreview, + Link, +} from '../../components'; import { Wrapper } from './styles'; import { FeatureOutput, @@ -77,10 +84,70 @@ const Feature = () => { onClick={() => history.push(`/feature-settings/${id}`)} /> - - Description + + + Description + {feature.description} + + + + Price + + + + ${feature.price} + + + {feature.wireframes && ( + + + Wireframes + + + {feature.wireframes.map((image) => ( + + ))} + + + )} + + + + Repo + + + {feature.repo} + ) : (