Description=
There are multiple instances in the About page where conflicting Tailwind CSS utility classes are applied to the same elements (e.g., multiple text-size utilities at the same breakpoint).
This results in CSS overrides and lint warnings, making the code harder to read and maintain.
Example-
Classes like:
text-lg and text-2xl
md:text-5xl and md:text-6xl
are applied together, even though only one takes effect.
Expected Behavior-
Each element should have a single Tailwind utility per property per breakpoint to avoid unnecessary overrides.
Impact-
- Improves code readability
- Removes Tailwind warnings
- No intended visual changes