File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed
src/components/learn-aggregator Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import { ReactNode } from "react"
22
33import { StripesDecoration } from "@/app/conf/_design-system/stripes-decoration"
44import { Eyebrow } from "@/_design-system/eyebrow"
5+ import ArrowDownIcon from "@/app/conf/_design-system/pixelarticons/arrow-down.svg?svgr"
56
67import 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
6982export function LearnHeroStripes ( ) {
You can’t perform that action at this time.
0 commit comments