feat(ui): add reusable GlassPanel component#72
Merged
soomtochukwu merged 1 commit intoDXmakers:mainfrom Apr 28, 2026
Merged
Conversation
…age.tsx - Create GlassPanel.tsx with children and optional className props - Applies the .glass-panel CSS class internally (backdrop blur 16px, rgba(24,24,27,0.7) background, 1px solid rgba(255,255,255,0.08) border, hover translateY(-2px) with deepened shadow — all defined in globals.css) - Replace both raw <div className="glass-panel"> instances in page.tsx with <GlassPanel> Closes DXmakers#32
|
@Spagero763 Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
There was a problem hiding this comment.
Pull request overview
Adds a reusable GlassPanel wrapper component to standardize usage of the existing .glass-panel styling across the UI (per issue #32), and migrates the home page to use it.
Changes:
- Added
GlassPanelcomponent that renders a.glass-panelwrapper with optional className merging. - Replaced two raw
<div className="glass-panel">wrappers inpage.tsxwith<GlassPanel>.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| frontend/src/app/components/GlassPanel.tsx | Introduces the reusable wrapper component for consistent glass panel styling. |
| frontend/src/app/page.tsx | Updates the home page to use GlassPanel instead of repeated raw .glass-panel divs. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Summary
Implements the reusable
GlassPanelwrapper component requested in #32.New file:
frontend/src/app/components/GlassPanel.tsxchildrenand an optionalclassNameprop (merged afterglass-panel).glass-panelinternally — the class inglobals.cssalready enforces:backdrop-filter: blur(16px)/-webkit-backdrop-filter: blur(16px)background: rgba(24, 24, 27, 0.7)via--glass-bgborder: 1px solid rgba(255, 255, 255, 0.08)via--glass-bordertransform: translateY(-2px)+ deepenedbox-shadowUpdated:
frontend/src/app/page.tsxBoth raw
<div className="glass-panel">elements replaced with<GlassPanel>.Acceptance Criteria
GlassPanelcorrectly renders its childrenpage.tsxusesGlassPanelinstead of rawdivtags withclassName="glass-panel"Closes #32