diff --git a/fronts-client/src/components/card/recipe/RecipeCard.tsx b/fronts-client/src/components/card/recipe/RecipeCard.tsx index 63276e8c0d4..f5955b7469f 100644 --- a/fronts-client/src/components/card/recipe/RecipeCard.tsx +++ b/fronts-client/src/components/card/recipe/RecipeCard.tsx @@ -11,6 +11,10 @@ import { connect } from 'react-redux'; import { State } from 'types/State'; import { selectors as recipeSelectors } from 'bundles/recipesBundle'; import { Recipe } from 'types/Recipe'; +import CardBody from '../CardBody'; +import CardMetaContainer from '../CardMetaContainer'; +import ImageAndGraphWrapper from 'components/image/ImageAndGraphWrapper'; +import { ThumbnailSmall } from 'components/image/Thumbnail'; interface ContainerProps { onDragStart?: (d: React.DragEvent) => void; @@ -51,21 +55,28 @@ const RecipeCardComponent = ({ }: RecipeProps) => { return ( - - - + + Recipe - - {recipe.title} - - - + + + + + + {recipe.title} + + + + + + + ); }; diff --git a/fronts-client/src/components/feed/ContentInfo.tsx b/fronts-client/src/components/feed/ContentInfo.tsx new file mode 100644 index 00000000000..88e021191d5 --- /dev/null +++ b/fronts-client/src/components/feed/ContentInfo.tsx @@ -0,0 +1,8 @@ +import { styled } from 'constants/theme'; + +export const ContentInfo = styled.div` + padding-top: 2px; + font-size: 12px; + font-family: TS3TextSans; + font-weight: bold; +`;