Skip to content

Fix/cv spacing consistency#15

Merged
jcf-junior merged 7 commits intomainfrom
fix/cv-spacing-consistency
Mar 18, 2026
Merged

Fix/cv spacing consistency#15
jcf-junior merged 7 commits intomainfrom
fix/cv-spacing-consistency

Conversation

@jcf-junior
Copy link
Copy Markdown
Owner

No description provided.

@netlify
Copy link
Copy Markdown

netlify bot commented Mar 16, 2026

Deploy Preview for getcvdev ready!

Name Link
🔨 Latest commit aaa3d4b
🔍 Latest deploy log https://app.netlify.com/projects/getcvdev/deploys/69ba8f26aff94d00072e84f2
😎 Deploy Preview https://deploy-preview-15--getcvdev.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

- Adjusted spacing in technical skills
Copy link
Copy Markdown
Contributor

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 focuses on improving spacing/typographic consistency in the “Jake’s Resume” template, including date-range formatting and layout tweaks, and introduces a dedicated preview route for viewing the template.

Changes:

  • Update period formatting to use an en-dash separator for date ranges.
  • Adjust resume template CSS/markup to standardize line-height and section spacing.
  • Add a new /editor/preview route and Preview page to render the resume template.

Reviewed changes

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

Show a summary per file
File Description
src/utils/formatDate.ts Changes date period separator from hyphen to en-dash.
src/templates/jakesResume.css Adds global box-sizing/line-height rules and changes section title underline styling.
src/templates/JakesResume.tsx Refactors spacing/layout for header, sections, and list items; updates line-height usage.
src/pages/Preview.tsx New preview page rendering JakesResume from stored CV data.
src/main.tsx Adds route for the new preview page.
src/data/initialCv.json Adds a whitespace-only line change.

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

Comment on lines +29 to +31
* {
box-sizing: border-box !important;
line-height: 1em !important;

return (
<div className="border border-red-500 w-fit mx-auto">
<JakesResume cvData={cvData} />;
const { cvData } = useCvData();

return (
<div className="border border-red-500 w-fit mx-auto">
Comment on lines +193 to 202
<div className="flex gap-1.5">
<strong>Programming Languages: </strong>
<span>{cvData.skills.programmingLanguages.join(", ")}</span>
</div>
)}

{cvData.skills.frameworks.length > 0 && (
<div>
<div className="flex gap-1.5">
<strong>Frameworks / Libraries: </strong>
<span>{cvData.skills.frameworks.join(", ")}</span>
{cvData.skills.developerTools.length > 0 && (
<div>
<div className="flex gap-1.5">
<strong>Developer Tools: </strong>
Comment on lines 28 to 29

},
@jcf-junior jcf-junior merged commit 4350c4e into main Mar 18, 2026
5 checks passed
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