You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@age.apache.org by hb...@apache.org on 2023/01/27 04:28:48 UTC

[age-website] branch new-web updated: Fix Footer

This is an automated email from the ASF dual-hosted git repository.

hbshin pushed a commit to branch new-web
in repository https://gitbox.apache.org/repos/asf/age-website.git


The following commit(s) were added to refs/heads/new-web by this push:
     new c3e5547a Fix Footer
c3e5547a is described below

commit c3e5547a4bda4c68c9b8b2ae36d6c90fba0fe879
Author: Hanbyeol Shin /  David Shin / 신한별 <76...@users.noreply.github.com>
AuthorDate: Fri Jan 27 13:28:41 2023 +0900

    Fix Footer
    
    1. icon change
---
 src/components/Footer.js | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/src/components/Footer.js b/src/components/Footer.js
index f0684e3e..59887b5b 100644
--- a/src/components/Footer.js
+++ b/src/components/Footer.js
@@ -1,14 +1,8 @@
 import * as React from 'react';
 // import { Link } from 'gatsby';
 // images
-import icoGithub from '../img/social/icon-Pagegithub.png';
-import icoTwitter from '../img/social/icon-Pagetwitter.png';
-import icoLinkedin from '../img/social/icon-Pagelinkedin.png';
-import icoYoutube from '../img/social/icon-Pageyoutube.png';
-
 import icoGithubLd from '../../static/img/icon-github.png';
 import icoTwitterLd from '../../static/img/icon-twitter.png';
-import icoLinkedinLd from '../../static/img/icon-linkedin.png';
 import icoYoutubeLd from '../../static/img/icon-youtube.png';
 import icoDiscordLd from '../../static/img/icon-discord.png';
 
@@ -27,8 +21,8 @@ const Footer = class extends React.Component {
         const links = document.getElementsByClassName('FooterLinks')[0].children;
         links[0].children[0].src = icoGithubLd;
         links[1].children[0].src = icoTwitterLd;
-        links[2].children[0].src = icoLinkedinLd;
-        links[3].children[0].src = icoYoutubeLd;
+        links[2].children[0].src = icoYoutubeLd;
+        links[3].children[0].src = icoDiscordLd;
       }
     }
   }