Skip to content

Commit

Permalink
Merge pull request mantinedev#11 from widgeter/new-components
Browse files Browse the repository at this point in the history
Reduce text size on small devices on faqs page
  • Loading branch information
widgeter authored Sep 11, 2023
2 parents 0326911 + e61482b commit 25b671c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/shared/data/pages/faqs.data.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,14 @@ import { HeroProps } from '~/shared/types';
// Hero data on FAQs page *******************
export const heroFaqs: HeroProps = {
title: 'Frequently Asked Questions',
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.`,
subtitle: (
<>
<span className="hidden md:inline">
{`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.`}
</span>{' '}
Explore them to optimize your experience with our website and products.
</>
),
tagline: 'Demo FAQs Page',
};

Expand Down

0 comments on commit 25b671c

Please sign in to comment.