Skip to content

Commit 9253413

Browse files
committed
wip
1 parent 456a68a commit 9253413

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

src/components/learn-aggregator/index.tsx

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { ReactNode } from "react"
22

33
import { StripesDecoration } from "@/app/conf/_design-system/stripes-decoration"
44
import { Eyebrow } from "@/_design-system/eyebrow"
5+
import ArrowDownIcon from "@/app/conf/_design-system/pixelarticons/arrow-down.svg?svgr"
56

67
import blurBean from "./learn-blur-bean.webp"
78

@@ -63,7 +64,19 @@ function TeaserSectionListItem({
6364
title,
6465
description,
6566
}: TeaserSectionListItemProps) {
66-
return <li></li>
67+
return (
68+
<li className="flex items-end gap-2 text-neu-900">
69+
<div>
70+
<div></div>
71+
<p className="typography-body-md text-pretty p-4 text-neu-900">
72+
{description}
73+
</p>
74+
</div>
75+
<div className="p-4 max-lg:hidden">
76+
<ArrowDownIcon className="size-8 shrink-0 -rotate-90" />
77+
</div>
78+
</li>
79+
)
6780
}
6881

6982
export function LearnHeroStripes() {

0 commit comments

Comments
 (0)