Description
In the hero section of the home page, the mock code editor window frame is empty, and the code lines float below it on the page background. This happens because the wrapper div <div class="hero-visual-main"> is closed prematurely with a trailing slash/closing tag (</div>) at line 547 of index.html. As a result, the code block header (hvm-header) and the code contents (hvm-code) render outside of the editor frame.
We should correct the div structure so that all inner elements are correctly wrapped inside the hero-visual-main editor mockup.
Current Behavior
The mock code visualizer renders as a blank black rectangle, with the code details pushed below it on a plain background.
Proposed Solution
- Remove the closing
</div> tag immediately following <div class="hero-visual-main" style="cursor: default;"> on line 547.
- Ensure the closing tag on line 565 correctly closes the
hero-visual-main section.
Implementation Guidance
- Modify
src/templates/index.html (lines 547-565).
Acceptance Criteria
Contributor Guidelines
Interested in working on this issue?
- Comment
/assign to request assignment.
- Wait until the issue shows you as the assignee.
- Create a new branch for your changes.
- Submit a Pull Request referencing this issue.
Please do not begin working on an issue already assigned to another contributor unless a maintainer confirms it is available.
Description
In the hero section of the home page, the mock code editor window frame is empty, and the code lines float below it on the page background. This happens because the wrapper div
<div class="hero-visual-main">is closed prematurely with a trailing slash/closing tag (</div>) at line 547 ofindex.html. As a result, the code block header (hvm-header) and the code contents (hvm-code) render outside of the editor frame.We should correct the div structure so that all inner elements are correctly wrapped inside the
hero-visual-maineditor mockup.Current Behavior
The mock code visualizer renders as a blank black rectangle, with the code details pushed below it on a plain background.
Proposed Solution
</div>tag immediately following<div class="hero-visual-main" style="cursor: default;">on line 547.hero-visual-mainsection.Implementation Guidance
src/templates/index.html(lines 547-565).Acceptance Criteria
expense_tracker.py) and code details render inside the black editor frame.Contributor Guidelines
Interested in working on this issue?
/assignto request assignment.Please do not begin working on an issue already assigned to another contributor unless a maintainer confirms it is available.