From ba5139beb3212eb8b377985f81c005530c329ec6 Mon Sep 17 00:00:00 2001 From: Victor Frye Date: Sun, 21 Jan 2024 21:26:46 -0500 Subject: [PATCH] feat: simplify about me page text (#19) --- src/Client/Components/Content/About.razor | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/Client/Components/Content/About.razor b/src/Client/Components/Content/About.razor index 7fb3a5e..7fb0148 100644 --- a/src/Client/Components/Content/About.razor +++ b/src/Client/Components/Content/About.razor @@ -12,10 +12,10 @@ and constructing solutions that help people achieve more.

- I'm currently working as a Senior Solutions Developer at Leading EDJE, + I'm currently working as a Senior Software Engineer at Leading EDJE, a software consultancy based in Columbus, Ohio. In my downtime, I enjoy gaming, reading, and quality time with my - @GetPartnerRelationship() and our two dogs. + wife and our two dogs.

@@ -23,10 +23,6 @@ @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() { @@ -37,6 +33,4 @@ return _today.Year - _start.Year; } - - private string GetPartnerRelationship() => _today > _wedding ? Married : Engaged; }