diff --git a/gitprofile.config.js b/gitprofile.config.js index 0ea17caf2..60930d373 100644 --- a/gitprofile.config.js +++ b/gitprofile.config.js @@ -14,7 +14,7 @@ const config = { linkedin: 'nate-goldsborough', twitter: '', facebook: '', - instagram: 'nathen418', + instagram: '', dribbble: '', behance: '', medium: '', @@ -46,7 +46,7 @@ const config = { experiences: [ { company: 'WEC Energy Group', - position: 'Information Technology Intern', + position: 'Information Technology Intern - IT Infrastructure and Operations', from: 'May 2023', to: 'Present', companyLink: 'https://www.wecenergygroup.com/', @@ -135,8 +135,15 @@ const config = { title: 'Purpose Driven Sisters Website Redesign', description: 'Worked with a small student team to complete a digital presence redesign for Purpose Driven Sisters, a nonprofit organization focused on youth mentorship that strives to empower young girls in Milwaukee. Designed a new website by creating new and transforming existing content, refined their brand story, and defined donation and involvement incentives to prospective sponsors and members so they can better serve their community and grow as an organization. Worked on improving SEO and basic web accessibility and improving the mobile site design. This project was completed as part of the Nonprof-IT program at UW-Milwaukee', - imageUrl: 'https://static.wixstatic.com/media/40724f_2012372710cf4d099208a3349999d4ce~mv2.png', - link: 'https://purposedsisters.com', + imageUrl: 'https://antaresnetwork.com/resources/PDS_Logo.jpg', + link: 'https://purposedsisters.org', + }, + { + title: 'Antares Bot', + description: + 'AntaresBot a small bot with a bunch of features and cool commands. Join in the fun by adding AntaresBot to your server today. Developed for fun by me to learn type script and discord.js. Verified by Discord and in over 250 servers with over 1 million commands used and a 99% uptime. Using Discord\'s new "Slash Commands", Antares Bot supports many commands from fun random images, counting and chance games, a counting game, and more. Use /help in any channel to get a list of commands and features that are accessible. Admins can use /adminhelp', + imageUrl: 'https://antaresnetwork.com/resources/icon.png', + link: 'https://bot.antaresnetwork.com', } ], // Display blog posts from your medium or dev account. (Optional) diff --git a/src/components/GitProfile.jsx b/src/components/GitProfile.jsx index 4e31ca1d7..a9424b732 100644 --- a/src/components/GitProfile.jsx +++ b/src/components/GitProfile.jsx @@ -197,15 +197,15 @@ const GitProfile = ({ config }) => {
- - { )} -
+
{loading || !profile ? skeleton({ width: 'w-48', height: 'h-5' }) : profile.bio} @@ -64,7 +64,7 @@ const AvatarCard = ({ profile, loading, avatarRing, resume }) => { diff --git a/src/components/blog/index.jsx b/src/components/blog/index.jsx index 5f05bc7ae..130f3f22b 100644 --- a/src/components/blog/index.jsx +++ b/src/components/blog/index.jsx @@ -136,21 +136,21 @@ const Blog = ({ loading, blog, googleAnalytics }) => {
-

+

{article.title}

-

+

{formatDistance(article.publishedAt, new Date(), { addSuffix: true, })}

-

+

{article.description}

{article.categories.map((category, index2) => (
#{category} @@ -166,8 +166,8 @@ const Blog = ({ loading, blog, googleAnalytics }) => { )) ) : (
- -

+ +

No recent post

diff --git a/src/components/certification/index.jsx b/src/components/certification/index.jsx index 46a620e0a..f66ccadcf 100644 --- a/src/components/certification/index.jsx +++ b/src/components/certification/index.jsx @@ -58,8 +58,8 @@ const Certification = ({ certifications, loading }) => { )}
-
-
    +
    +
      {loading ? ( renderSkeleton() ) : ( diff --git a/src/components/certifications/index.jsx b/src/components/certifications/index.jsx index 866cca4e3..e0f2bfa98 100644 --- a/src/components/certifications/index.jsx +++ b/src/components/certifications/index.jsx @@ -52,8 +52,8 @@ const Certifications = ({ certifications, loading }) => { )}
    -
    -
      +
      +
        {loading ? ( renderSkeleton() ) : ( diff --git a/src/components/details/index.jsx b/src/components/details/index.jsx index 5d0c340e3..eee9300db 100644 --- a/src/components/details/index.jsx +++ b/src/components/details/index.jsx @@ -87,7 +87,7 @@ const Details = ({ profile, loading, social, github }) => { return (
        -
        +
        {loading || !profile ? ( renderSkeleton() ) : ( diff --git a/src/components/education/index.jsx b/src/components/education/index.jsx index c2e96bde8..336bf8491 100644 --- a/src/components/education/index.jsx +++ b/src/components/education/index.jsx @@ -54,8 +54,8 @@ const Education = ({ loading, education }) => { )}
        -
        -
          +
          +
            {loading ? ( renderSkeleton() ) : ( diff --git a/src/components/error-page/index.jsx b/src/components/error-page/index.jsx index 37880b672..bc92bca98 100644 --- a/src/components/error-page/index.jsx +++ b/src/components/error-page/index.jsx @@ -10,14 +10,14 @@ const ErrorPage = (props) => { {props.status}

            {props.title}

            -
            +
            {props.subTitle}
        -
        -
        +
        +
        ); }; diff --git a/src/components/experience/index.jsx b/src/components/experience/index.jsx index 3387166f1..df61b176d 100644 --- a/src/components/experience/index.jsx +++ b/src/components/experience/index.jsx @@ -57,8 +57,8 @@ const Experience = ({ experiences, loading }) => { )}
        -
        -
          +
          +
            {loading ? ( renderSkeleton() ) : ( diff --git a/src/components/external-project/index.jsx b/src/components/external-project/index.jsx index 3221d25df..87aff55d7 100644 --- a/src/components/external-project/index.jsx +++ b/src/components/external-project/index.jsx @@ -98,7 +98,7 @@ const ExternalProject = ({ externalProjects, loading, googleAnalytics }) => {
            -

            +

            {item.title}

            {item.imageUrl && ( @@ -116,7 +116,7 @@ const ExternalProject = ({ externalProjects, loading, googleAnalytics }) => {
            )} -

            +

            {item.description}

            diff --git a/src/components/project/index.jsx b/src/components/project/index.jsx index e46a0caae..298b69537 100644 --- a/src/components/project/index.jsx +++ b/src/components/project/index.jsx @@ -87,16 +87,16 @@ const Project = ({ repo, loading, github, googleAnalytics }) => {
            -
            +
            {item.name}
            -

            +

            {item.description}

            -
            +
            @@ -110,7 +110,7 @@ const Project = ({ repo, loading, github, googleAnalytics }) => {
            {item.language} @@ -146,7 +146,7 @@ const Project = ({ repo, loading, github, googleAnalytics }) => { href={`https://github.com/${github.username}?tab=repositories`} target="_blank" rel="noreferrer" - className="text-base-content opacity-50 hover:underline" + className="text-base-content opacity-100 hover:underline" > See All diff --git a/src/components/theme-changer/index.jsx b/src/components/theme-changer/index.jsx index 393281be5..d3ac06351 100644 --- a/src/components/theme-changer/index.jsx +++ b/src/components/theme-changer/index.jsx @@ -43,7 +43,7 @@ const ThemeChanger = ({ theme, setTheme, loading, themeConfig }) => {
            Change Theme @@ -72,7 +72,7 @@ const ThemeChanger = ({ theme, setTheme, loading, themeConfig }) => { onClick={(e) => changeTheme(e, item)} className={`${theme === item ? 'active' : ''}`} > - + {item === themeConfig.defaultTheme ? 'Default' : item}