fix: apply prettier formatting#38
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR applies Prettier-style formatting to several React components and normalizes a CSS hex color, aiming to keep the UI codebase consistently formatted.
Changes:
- Reformat JSX and inline
styleobjects across multiplecomponents/*.tsxfiles for readability/consistency. - Reflow long JSX text nodes (line wrapping) without changing content.
- Normalize
--bluehex color casing inapp/globals.css.
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| components/Nav.tsx | Prettier reformat of JSX/style objects; still contains a hidden placeholder link element. |
| components/HostInterest.tsx | Prettier reformat of JSX/style objects and paragraph wrapping. |
| components/Hero.tsx | Prettier reformat of layout div styles and paragraph wrapping. |
| components/Footer.tsx | Prettier reformat of JSX/style objects. |
| components/About.tsx | Prettier reformat of JSX/style objects and paragraph wrapping. |
| app/globals.css | Lowercases the --blue hex value. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+61
to
69
| <a | ||
| style={{ | ||
| color: "#4B9CD3", | ||
| textDecoration: "none", | ||
| visibility: "hidden", | ||
| }} | ||
| > | ||
| PLACEHOLDER | ||
| </a> |
Comment on lines
+33
to
+40
| <span | ||
| style={{ | ||
| fontFamily: D, | ||
| fontSize: "26px", | ||
| letterSpacing: "0.02em", | ||
| color: "#111", | ||
| }} | ||
| > |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #5