Skip to content

Commit

Permalink
fix: use light text for about content (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
victorfrye authored Feb 14, 2024
1 parent 43ff3e8 commit b525eea
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/azure-swa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
run: npm ci
- name: Verify formatting
run: npm run lint
- name: Build app
- name: Build sources
run: npm run build
- name: Deploy static web app
id: deploy
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div align="center">
<img src="src\Client\wwwroot\images\profile.png" alt="profile of Victor Frye" height="64" width="64" />
<img src="public\images\profile.png" alt="profile of Victor Frye" height="64" width="64" />
<h1>VictorFrye.COM</h1>
<p>A personal portfolio site for your friendly neighborhood technologist, Victor Frye</p>
</div>
Expand Down
28 changes: 14 additions & 14 deletions src/app/components/content/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,21 @@ export default function About() {
}

return (
<section id="about" className="d-flex flex-column flex-wrap text-primary pt-3 pb-2">
<section id="about" className="d-flex flex-column flex-wrap">
<h2 className="text-primary pt-3 pb-2">_About</h2>
<p>
Hello from Grand Rapids! <b>I&#x27;m Victor, a software engineer powered by coffee</b>.
With {`${getYearsOfExperience()}`} years of experience in the industry, I&#x27;ve worked with a variety of technologies and platforms.
My current focuses are on web development with <strong>React.js</strong>, the <strong>.NET</strong> ecosystem, <strong>Azure</strong> cloud services, and <strong>DevOps</strong> automation and processes.
</p>
<p>
I&#x27;m passionate about <strong>digital transformation</strong>, the <strong>developer experience</strong>, and constructing solutions that help people <strong>achieve more</strong>.
</p>
<p>
I&#x27;m currently working as a <strong>Senior Software Engineer at <Link href="https://leadingedje.com" target="_blank" rel="noreferrer"><strong>Leading EDJE</strong></Link></strong>, a software consultancy based in Columbus, Ohio.
In my downtime, I enjoy <b>gaming</b>, <b>reading</b>, and quality time with <b>my wife and our two dogs</b>.
</p>

<p>
Hello from Grand Rapids! <b>I&#x27;m Victor, a software engineer powered by coffee</b>.
With {`${getYearsOfExperience()}`} years of experience in the industry, I&#x27;ve worked with a variety of technologies and platforms.
My current focuses are on web development with <strong>React.js</strong>, the <strong>.NET</strong> ecosystem, <strong>Azure</strong> cloud services, and <strong>DevOps</strong> automation and processes.
</p>
<p>
I&#x27;m passionate about <strong>digital transformation</strong>, the <strong>developer experience</strong>, and constructing solutions that help people <strong>achieve more</strong>.
</p>
<p>
I&#x27;m currently working as a <strong>Senior Software Engineer at <Link href="https://leadingedje.com" target="_blank" rel="noreferrer"><strong>Leading EDJE</strong></Link></strong>, a software consultancy based in Columbus, Ohio.
In my downtime, I enjoy <b>gaming</b>, <b>reading</b>, and quality time with <b>my wife and our two dogs</b>.
</p>
</section>
)
}

0 comments on commit b525eea

Please sign in to comment.