Skip to content

Commit 5f50b90

Browse files
committed
Format
1 parent 02f888c commit 5f50b90

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/app/conf/2025/components/testimonials/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export function Testimonials({ className, ...rest }: TestimonialsProps) {
5757
)}
5858
{...rest}
5959
>
60-
<h2 className="typography-h2 text-center text-neu-800">
60+
<h2 className="text-center text-neu-800 typography-h2">
6161
How was the previous edition?
6262
</h2>
6363
<div className="flex w-full snap-x snap-mandatory flex-row gap-10 overflow-x-auto px-4 py-6 lg:mt-16 lg:py-16">
@@ -67,7 +67,7 @@ export function Testimonials({ className, ...rest }: TestimonialsProps) {
6767
className="flex shrink-0 snap-start flex-row-reverse items-center gap-6 max-md:flex-col md:px-10"
6868
>
6969
<div>
70-
<p className="typography-body-lg max-w-[calc(100vw-32px)] !leading-[1.1] max-md:text-center md:max-w-[544px]">
70+
<p className="max-w-[calc(100vw-32px)] !leading-[1.1] typography-body-lg max-md:text-center md:max-w-[544px]">
7171
{testimonial.quote}
7272
</p>
7373
<AuthorNameAndRole
@@ -115,8 +115,8 @@ function AuthorNameAndRole({
115115
}) {
116116
return (
117117
<div className={className}>
118-
<div className="typography-body-sm mt-3">{author.name}</div>
119-
<div className="typography-body-xs text-neu-700">{author.role}</div>
118+
<div className="mt-3 typography-body-sm">{author.name}</div>
119+
<div className="text-neu-700 typography-body-xs">{author.role}</div>
120120
</div>
121121
)
122122
}

src/app/conf/2025/components/what-to-expect.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function ListItem({ number, text }: { number: string; text: string }) {
2929
<span className="inline-block w-[87px] text-[72px]/none [text-box:trim-both_cap_alphabetic]">
3030
{number}
3131
</span>{" "}
32-
<span className="typography-menu ml-10 inline-block">{text}</span>
32+
<span className="ml-10 inline-block typography-menu">{text}</span>
3333
</li>
3434
)
3535
}

0 commit comments

Comments
 (0)