diff --git a/src/app/blog/Card3.tsx b/src/app/blog/Card3.tsx new file mode 100644 index 0000000..4aac792 --- /dev/null +++ b/src/app/blog/Card3.tsx @@ -0,0 +1,70 @@ +import React, { FC } from "react"; +import PostCardMeta from "@/components/PostCardMeta"; +import { PostDataType } from "@/data/types"; +import CategoryBadgeList from "@/components/CategoryBadgeList"; +import PostTypeFeaturedIcon from "@/components/PostTypeFeaturedIcon"; +import Link from "next/link"; +import Image from "next/image"; + +export interface Card3Props { + className?: string; + post: PostDataType; +} + +const Card3: FC = ({ className = "h-full", post }) => { + const { title, href, featuredImage, desc, categories, postType } = post; + + return ( +
+
+
+ +
+

+ + {title} + +

+
+ + {desc} + +
+
+ + +
+
+ +
+ + {title} + + + + +
+
+ ); +}; + +export default Card3;