This commit is contained in:
2026-02-13 19:04:07 +01:00
parent 9505331165
commit 69d432b6af
42 changed files with 650 additions and 360 deletions
@@ -3,7 +3,7 @@ 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 { DSQL_TBEN_ME_BLOG_POSTS } from "@/types/dsql";
import {
ArrowRight,
ArrowUpRight,
@@ -13,7 +13,7 @@ import {
import React from "react";
type Props = {
post: DSQL_TBENME_BLOG_POSTS;
post: DSQL_TBEN_ME_BLOG_POSTS;
};
export default function BlogPostsListCard({ post }: Props) {