diff --git a/apps/web/components/sections/home/blog-section.tsx b/apps/web/components/sections/home/blog-section.tsx index ad1d3c5a95..a11abb4327 100644 --- a/apps/web/components/sections/home/blog-section.tsx +++ b/apps/web/components/sections/home/blog-section.tsx @@ -99,13 +99,17 @@ function CardBody({
-

+

{title}

-

{date}

+

+ {date} +

{author ? ( -

{author}

+

+ {author} +

) : null}
@@ -133,14 +137,14 @@ export default function BlogSection({ data, articles }: Props) { return (
- -
+ +
{(data.label || data.eyebrow || data.cta) && ( -
+
{data.label ? ( -

+

{data.label}

) : null} @@ -154,7 +158,7 @@ export default function BlogSection({ data, articles }: Props) { href={data.cta.href} variant="link" icon={} - className="cursor-pointer transition-opacity hover:opacity-70" + className="absolute top-[23px] right-[41px] cursor-pointer transition-opacity hover:opacity-70 lg:static [&>span]:gap-1 lg:[&>span]:gap-1.5" > {data.cta.label} @@ -162,12 +166,12 @@ export default function BlogSection({ data, articles }: Props) {
)} -

+

{data.title}

{cards.map((card) => (