Skip to content

Commit 25b671c

Browse files
authored
Merge pull request mantinedev#11 from widgeter/new-components
Reduce text size on small devices on faqs page
2 parents 0326911 + e61482b commit 25b671c

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/shared/data/pages/faqs.data.tsx

+8-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,14 @@ import { HeroProps } from '~/shared/types';
44
// Hero data on FAQs page *******************
55
export const heroFaqs: HeroProps = {
66
title: 'Frequently Asked Questions',
7-
subtitle: `Whether you need help using our Next.js and Tailwind CSS templates, solving problems, or just want some useful tips, our FAQs are here to assist you. Explore them to optimize your experience with our website and products.`,
7+
subtitle: (
8+
<>
9+
<span className="hidden md:inline">
10+
{`Whether you need help using our Next.js and Tailwind CSS templates, solving problems, or just want some useful tips, our FAQs are here to assist you.`}
11+
</span>{' '}
12+
Explore them to optimize your experience with our website and products.
13+
</>
14+
),
815
tagline: 'Demo FAQs Page',
916
};
1017

0 commit comments

Comments
 (0)