Skip to content

Commit c71c627

Browse files
committed
fix(faq): change FAQ header to H3 and reduce text spacing (#1990)
1 parent 747b989 commit c71c627

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/components/faqs/faqs.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,16 +66,16 @@ const FAQs: React.FC = () => {
6666
<div className="mx-auto max-w-6xl px-4 sm:px-6 lg:px-8">
6767
<div className="w-full">
6868
<div className="mb-10 text-center lg:mb-14">
69-
<p
70-
className="mb-2.5 inline-flex items-center gap-2 text-xs font-semibold tracking-widest uppercase"
69+
<h3
70+
className="mb-1 inline-flex items-center gap-2 text-lg font-semibold tracking-widest uppercase"
7171
style={{
7272
color: isDark ? "#4ade80" : "#16a34a",
7373
fontFamily:
7474
"'Space Grotesk', 'Inter', -apple-system, sans-serif",
7575
}}
7676
>
7777
✦ FAQs
78-
</p>
78+
</h3>
7979
<h2
8080
className="text-3xl font-bold leading-tight tracking-tight sm:text-4xl"
8181
style={{
@@ -87,7 +87,7 @@ const FAQs: React.FC = () => {
8787
Looking for answers?
8888
</h2>
8989
<p
90-
className={`mx-auto mt-3 max-w-3xl text-base ${isDark ? "text-gray-400" : "text-gray-600"
90+
className={`mx-auto mt-1.5 max-w-3xl text-base ${isDark ? "text-gray-400" : "text-gray-600"
9191
}`}
9292
style={{ textAlign: "center" }}
9393
>

0 commit comments

Comments
 (0)