Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@

</div>

<div align="center">

<img src="./public/screenshot_calc.png" alt="PolydraIQ Interactive Calculator" width="900" />

<br/>

<img src="./public/screenshot_assessment.png" alt="PolydraIQ Guided Assessment" width="900" />

</div>

## 📋 Table of Contents

- [Overview](#-overview)
Expand Down
Binary file added public/screenshot_assessment.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/screenshot_calc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/app/components/calculator/Calculator.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
width: 95vw;
height: auto;
background-color: var(--color-surface);
border: solid 1px var(--color-border-subtle);
border-radius: 6px;
border: solid 10px var(--color-gold);
border-radius: 18px;
margin: 25vh auto 0 auto;
Comment on lines 13 to 18
Copy link

Copilot AI Jan 27, 2026

Choose a reason for hiding this comment

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

Changing the border to 10px while keeping width: 95vw can cause the element to exceed the viewport (default box-sizing: content-box adds border to the specified width), leading to horizontal scrolling on smaller screens. Consider switching this component to box-sizing: border-box, reducing the width, or using an outline/shadow effect if the goal is a thick frame without affecting layout.

Copilot uses AI. Check for mistakes.
padding: 18px 20px 24px 20px;
z-index: 2;
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/footer/Footer.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@
justify-content: center;
margin-top: 40px;
margin-bottom: 20px;
color: var(--color-text-muted);
color: #e5e7eb;
}
Comment on lines 20 to 23
Copy link

Copilot AI Jan 27, 2026

Choose a reason for hiding this comment

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

This hardcodes a light text color in the module, while the rest of the styling relies on CSS variables (e.g., var(--color-text-muted) previously). To keep theming consistent, consider updating the global --color-text-muted token for the new dark background and continuing to use the variable here instead of a hex literal.

Copilot uses AI. Check for mistakes.
2 changes: 1 addition & 1 deletion src/app/components/questionnaire/QuestionnaireDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ Based on your assessment results, focus on areas with lower scores to improve yo
<h3 style={{ margin: '0 0 8px 0', color: '#1f2937' }}>{SECTIONS[tab]}</h3>
<div style={{ display: 'flex', alignItems: 'center', gap: '16px', marginBottom: '12px' }}>
<ProgressBar
value={(currentScore / maxPossibleScore) * 100}
value={maxPossibleScore ? Math.round((currentScore / maxPossibleScore) * 100) : 0}
style={{ flex: 1 }}
color="#3b82f6"
/>
Expand Down
1 change: 0 additions & 1 deletion src/app/pages/home.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
background-color: var(--color-navy);
position: absolute;
top: 0;
border-bottom: solid 10px var(--color-gold);

.container {
margin-top: 80px;
Expand Down
4 changes: 2 additions & 2 deletions src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

:root {
/* Neutrals */
--color-bg: #f7f5f1;
--color-bg: #1f2937;
--color-surface: #ffffff;
--color-border-subtle: #d6d0c4;
--color-text-main: #1f2933;
Expand All @@ -28,7 +28,7 @@ body {
font-size: 15px;
line-height: 1.4;
background-color: var(--color-bg);
color: var(--color-text-main);
color: #f9fafb;
}
Comment on lines 29 to 32
Copy link

Copilot AI Jan 27, 2026

Choose a reason for hiding this comment

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

color is now hardcoded to #f9fafb instead of using a design token. Since this file defines global tokens, it would be more maintainable to use var(--color-text-main) (after updating it for the dark background) or introduce a specific token for default body text on dark backgrounds, so component styles don’t need to mix variables and raw hex values.

Copilot uses AI. Check for mistakes.

body {
Expand Down
Loading