diff --git a/src/app/blog/Card12.tsx b/src/app/blog/Card12.tsx new file mode 100644 index 0000000..7d059be --- /dev/null +++ b/src/app/blog/Card12.tsx @@ -0,0 +1,62 @@ +import React, { FC } from "react"; +import { PostDataType } from "@/data/types"; +import PostCardMeta from "@/components/PostCardMeta"; +import PostTypeFeaturedIcon from "@/components/PostTypeFeaturedIcon"; +import SocialsShare from "@/shared/SocialsShare"; +import { DEMO_POSTS } from "@/data/posts"; +import Link from "next/link"; +import Image from "next/image"; + +export interface Card12Props { + className?: string; + post?: PostDataType; +} + +const Card12: FC = ({ + className = "h-full", + post = DEMO_POSTS[0], +}) => { + const { title, href, featuredImage, desc, postType } = post; + + return ( +
+ + {title} + + + + + + + +
+

+ + {title} + +

+ + {desc} + + +
+
+ ); +}; + +export default Card12;