Page MenuHomePhabricator

Replace Inline Style on app/page.tsx Line 8 with CSS Class
Open, Needs TriagePublic

Description

Line 8 of app/page.tsx uses an inline style prop to apply a hardcoded background colour (#ffffff). Inline styles bypass the project's styling architecture, are harder to maintain, cannot be overridden by CSS cascade or theming, and scatter visual decisions across component files rather than consolidating them in the styling layer where they belong.

Event Timeline

Hi! I have addressed the issue by replacing inline styles with Tailwind classes. Please let me know if any changes are needed.