Skip to content

Commit

Permalink
Merge branch 'main' into vf/theme
Browse files Browse the repository at this point in the history
  • Loading branch information
victorfrye authored Jan 22, 2024
2 parents e331b09 + ba5139b commit 1e19d1e
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/Client/Components/Content/About.razor
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,17 @@
and constructing solutions that help people <strong>achieve more</strong>.
</p>
<p>
I'm currently working as a <strong>Senior Solutions Developer at <a href="https://leadingedje.com/">Leading EDJE</a></strong>,
I'm currently working as a <strong>Senior Software Engineer at <a href="https://leadingedje.com/" target="_blank">Leading EDJE</a></strong>,
a software consultancy based in Columbus, Ohio.
In my downtime, I enjoy <strong>gaming</strong>, <strong>reading</strong>, and quality time with <strong>my
@GetPartnerRelationship() and our two dogs</strong>.
wife and our two dogs</strong>.
</p>
</div>
</section>

@code {
private readonly DateTime _today = DateTime.Now;
private readonly DateTime _start = new DateTime(2019, 5, 6);
private readonly DateTime _wedding = new DateTime(2024, 1, 6);

private const string Married = "wife";
private const string Engaged = "fiancée";

private int GetYearsOfExperience() {

Expand All @@ -37,6 +33,4 @@

return _today.Year - _start.Year;
}

private string GetPartnerRelationship() => _today > _wedding ? Married : Engaged;
}

0 comments on commit 1e19d1e

Please sign in to comment.