Refactor/change logo place - #4
Open
Majkan1 wants to merge 27 commits into
Open
Conversation
Make code prompts dimmed out, so that it's easy to filter them out when reading.
…web-app into delete/sentance
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
This PR refreshes the website UI with a theme-aware navbar, updated home content (slider, YouTube panel, welcome layout), a YouTube contact link, updated member list, and removes the unused Members route. It also tweaks footer text, panel styling, and the README.
Changes:
- Theme-aware Navbar (background, hamburger lines, logo fills) and CSS refactor.
- Updated Home slider content, panel order, welcome layout, and project slider text styling.
- Updated Members list, added YouTube link, removed Members route, simplified footers.
Reviewed changes
Copilot reviewed 20 out of 29 changed files in this pull request and generated 18 comments.
Show a summary per file
| File | Description |
|---|---|
| src/components/WindowComponent/WindowPanel.css | Reduce .window-panel-2 width from 45% to 40% |
| src/components/Navbar/Navbar.jsx | Restructure JSX with nav-background wrapper, theme-aware classes |
| src/components/Navbar/Navbar.css | Add theme variants for nav background, lines, and hamburger |
| src/components/Navbar/LogoTextNavbar.jsx | Use getFillColor for path fills |
| src/components/Navbar/LogoNavlink2.jsx | Theme-aware fill color |
| src/components/Navbar/LogoNavlink1.jsx | Theme-aware fill color |
| src/components/Home/WelcomeMessage/WelcomeMessage.jsx | Reorder logo and text |
| src/components/Home/WelcomeMessage/LogoText.jsx | Remove large block of SVG paths |
| src/components/Home/HomePanelContent/ProjectsPanel/Slider.css | Center text slider vertically with translucent bg |
| src/components/Home/HomePanelContent/HomePanels.jsx | Swap Slider and YoutubePanel positions |
| src/components/Footer/ThemeChangingFooter.jsx | Simplify footer text |
| src/components/Footer/Footer.jsx | Simplify footer text |
| src/components/ContactUs/ContactUs.jsx | Add YouTube section |
| src/components/ContactUs/ContactUs.css | Add theme-aware contact container styles |
| src/EditableThings/Members/members.js | Replace placeholders with real members |
| src/EditableThings/Links/links.js | Add youtube_url |
| src/EditableThings/HomeYoutubePanel/youtubeURL.js | Update embed video URL |
| src/EditableThings/HomeSliderPanel/images.js | Update slider content, add 4th slide |
| src/EditableThings/HomeInfoPanel/HomeInfoPanelText.js | Whitespace change |
| src/App.jsx | Remove Members import and commented route |
| README.md | Replace boilerplate with project description |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+13
to
+15
| lastName: "Jeczeń", | ||
| role: "Prezes", | ||
| describtion: "", |
Comment on lines
68
to
72
| style={{ | ||
| height: "100%", | ||
| width: "100%", | ||
| backgroundColor: "white", | ||
| zIndex: "1000", | ||
| height: "100%", | ||
| flexGrow: 2, | ||
| zIndex: "1000", | ||
| }} |
| }} | ||
| ></div> | ||
| <NavLink className="cybertech-title" to="/" onClick={() => setSelectedNavLink("home")}> | ||
| <div className={`nav-background nav-background-${theme}`}> |
| ></div> | ||
| <div | ||
| className={`hamburger ${isMenuOpen ? "active" : ""}`} | ||
| onClick={() => handleMenuOpen()} |
| @@ -9,7 +9,7 @@ export const Footer = () => { | |||
| return ( | |||
| <div className={`footer`}> | |||
| url: image4, | ||
| title: "Kurs edukacyjny", | ||
| caption: | ||
| "Na początku każdego roku prowadzimy kurs dla nowych członków. Skupiamy się na praktycznym podejściu i zadaniach, które uczą samodzielnego rozwiązywania problemów – a to wszystko bez spiny, w luźnej atmosferze. Prowadzimy też kanał na YouTubie, na którym można znaleźć wstęp ma Machine Learning, a za niedługo pojawią się nagrania z kursowych wykładów.", |
| zIndex: "1000", | ||
| height: "100%", | ||
| flexGrow: 2, | ||
| zIndex: "1000", |
|
|
||
| - [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh | ||
| - [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh | ||
| Maintanace repository for the Cybertech students' club website. |
Comment on lines
+45
to
47
| width: 40%; | ||
| min-width: 350px; | ||
| max-width: 1000px; |
Comment on lines
+18
to
+22
| top: 50%; | ||
| left: 50%; | ||
| background-color: #100c0c; | ||
| background-color: #100c0cdd; | ||
| color: white; | ||
| transform: translate(-50%, 0); | ||
| transform: translate(-50%, -50%); |
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.
what change
I remove linked by cybertech in svg and in text
why:
It was unnecessary
type:
delete