Is your feature request related to a problem? Please describe.
No, this is a minor design improvement to enhance readability. Currently, the text on the landing page listing document types ("financial reports, legal contracts, or research papers") blends in with the rest of the subtitle.
Describe the solution you'd like
Proposed Technical Approach:
- Locate the landing page subtitle string in
frontend/src/app/page.tsx.
- Wrap the key phrases ("financial reports", "legal contracts", and "research papers") in Tailwind utility spans (
<span className="font-semibold text-foreground">) to make them bold and distinctly scannable against the muted background text.
- Verify the changes locally and run the Prettier formatter to ensure consistency before submitting a clean pull request.
Describe alternatives you've considered
Using standard HTML tags like <strong> or <b> was considered. However, since the Next.js frontend uses Tailwind CSS for styling, utilizing Tailwind utility classes (font-semibold) ensures perfect consistency with the existing codebase.
Additional Context
No response
GSSoC '26
Is your feature request related to a problem? Please describe.
No, this is a minor design improvement to enhance readability. Currently, the text on the landing page listing document types ("financial reports, legal contracts, or research papers") blends in with the rest of the subtitle.
Describe the solution you'd like
Proposed Technical Approach:
frontend/src/app/page.tsx.<span className="font-semibold text-foreground">) to make them bold and distinctly scannable against the muted background text.Describe alternatives you've considered
Using standard HTML tags like
<strong>or<b>was considered. However, since the Next.js frontend uses Tailwind CSS for styling, utilizing Tailwind utility classes (font-semibold) ensures perfect consistency with the existing codebase.Additional Context
No response
GSSoC '26