import Card from "@/components/lib/elements/Card"; import H2 from "@/components/lib/layout/H2"; import Row from "@/components/lib/layout/Row"; import Span from "@/components/lib/layout/Span"; import Stack from "@/components/lib/layout/Stack"; import { DSQL_TBENME_BLOG_POSTS } from "@/types"; import { ArrowRight, ArrowUpRight, CircleArrowOutUpRight, Clock, } from "lucide-react"; import React from "react"; type Props = { post: DSQL_TBENME_BLOG_POSTS; }; export default function BlogPostsListCard({ post }: Props) { return (

{post.title}

{post.excerpt} {post.date_created?.substring(0, 24)}
); }