Skip to content

AJFJFJFIEOIFOIW FFINALLYYYYYYYY MROOOWWWWW BEEEEP THANK YOU 0xC74E#52

Merged
System-End merged 1 commit intomainfrom
dev
Mar 1, 2026
Merged

AJFJFJFIEOIFOIW FFINALLYYYYYYYY MROOOWWWWW BEEEEP THANK YOU 0xC74E#52
System-End merged 1 commit intomainfrom
dev

Conversation

@System-End
Copy link
Owner

No description provided.

Copilot AI review requested due to automatic review settings March 1, 2026 17:10
@cloudflare-workers-and-pages
Copy link

Deploying my-website with  Cloudflare Pages  Cloudflare Pages

Latest commit: b06349d
Status: ✅  Deploy successful!
Preview URL: https://bbe3038e.personal-website-f0d.pages.dev
Branch Preview URL: https://dev.personal-website-f0d.pages.dev

View logs

@System-End System-End merged commit b06349d into main Mar 1, 2026
6 of 7 checks passed
@System-End System-End deleted the dev branch March 1, 2026 17:12
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR primarily updates presentation and project documentation: it reformats the EndOS boot animation CSS, cleans up SVG metadata, and switches README setup commands to pnpm to better match the repo’s tooling.

Changes:

  • Re-indents EndOSBootAnimation.css and tweaks .logo-display styling.
  • Removes Inkscape-specific export metadata from an SVG asset.
  • Updates README install/start commands from npm to pnpm.

Reviewed changes

Copilot reviewed 2 out of 3 changed files in this pull request and generated 3 comments.

File Description
src/styles/EndOSBootAnimation.css Large CSS reformat; introduces display: flex !important on .logo-display.
public/images/blobfox/blobfoxnomcake.svg Removes editor/export metadata from the SVG header.
README.md Switches install/start instructions to pnpm.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines 2 to +7
.endos-boot-container {
position: fixed;
inset: 0;
background-color: #000000;
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
font-family: "Orbitron", monospace;
color: #00e5ff;
overflow: hidden;
position: fixed;
inset: 0;
background-color: #000000;
z-index: 9999;
display: flex;
Copy link

Copilot AI Mar 1, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This file was re-indented to 2 spaces, but the repository-wide EditorConfig specifies 4-space indentation for all files (see .editorconfig indent_size = 4). To avoid formatting churn (especially with the Prettier workflow) and keep style consistent with the rest of src/styles/*.css, please reformat this file to 4-space indents or adjust the repo’s formatting config (EditorConfig/Prettier) in the same PR so they agree.

Copilot uses AI. Check for mistakes.
Comment on lines +414 to 419
display: flex !important;
flex-direction: column;
align-items: center;
justify-content: center;
}

Copy link

Copilot AI Mar 1, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.logo-display is applied on the same element as boot-stage (see className={"boot-stage logo-display ..."} in the component). Setting display: flex !important here overrides the base .boot-stage { display: none; }, so the logo stage will no longer be fully removed from layout/paint when inactive. A safer approach is to keep display controlled by .boot-stage and only opt into flex when active (e.g., a more specific .boot-stage.logo-display.active { display: flex; }), without !important.

Suggested change
display: flex !important;
flex-direction: column;
align-items: center;
justify-content: center;
}
flex-direction: column;
align-items: center;
justify-content: center;
}
.boot-stage.logo-display.active {
display: flex;
}

Copilot uses AI. Check for mistakes.
Comment on lines 51 to 61
3. Install dependencies:
```bash
npm install
pnpm install
```

## Local Development

Start the development server:
```bash
npm start
pnpm start
```
Copy link

Copilot AI Mar 1, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

README now instructs pnpm install/pnpm start, but other parts of the same doc still list npm as a prerequisite and use npm commands for build/deploy/troubleshooting. Please update the prerequisites and the remaining commands to consistently reference pnpm (or explicitly document that npm is also supported) so new contributors don’t follow mixed instructions.

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants