Skip to content

Commit edc3e69

Browse files
nijamaDevnijama
authored andcommitted
react-icons for Social links and footer
- replaced @react-icons/all files with react-icons - use react icons instead of pure svg for the social links - Added Discord to the social links and footer
1 parent 8b30d42 commit edc3e69

12 files changed

+101
-44
lines changed

components/Footer.tsx

Lines changed: 28 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,22 @@
11
import * as React from 'react'
22

3-
import { FaEnvelopeOpenText } from '@react-icons/all-files/fa/FaEnvelopeOpenText'
4-
import { FaGithub } from '@react-icons/all-files/fa/FaGithub'
5-
import { FaLinkedin } from '@react-icons/all-files/fa/FaLinkedin'
6-
import { FaMastodon } from '@react-icons/all-files/fa/FaMastodon'
7-
import { FaTwitter } from '@react-icons/all-files/fa/FaTwitter'
8-
import { FaYoutube } from '@react-icons/all-files/fa/FaYoutube'
9-
import { FaZhihu } from '@react-icons/all-files/fa/FaZhihu'
10-
import { IoMoonSharp } from '@react-icons/all-files/io5/IoMoonSharp'
11-
import { IoSunnyOutline } from '@react-icons/all-files/io5/IoSunnyOutline'
3+
import /* Ionicons 5 */
4+
{
5+
IoMoonSharp,
6+
IoSunnyOutline
7+
} from 'react-icons/io5'
8+
9+
import /* Font Awesome */
10+
{
11+
FaDiscord,
12+
FaYoutube,
13+
FaTwitter,
14+
FaMastodon,
15+
FaGithub,
16+
FaLinkedin,
17+
FaZhihu,
18+
FaEnvelopeOpenText
19+
} from "react-icons/fa";
1220

1321
import * as config from '@/lib/config'
1422
import { useDarkMode } from '@/lib/use-dark-mode'
@@ -52,6 +60,17 @@ export const FooterImpl: React.FC = () => {
5260
</div>
5361

5462
<div className={styles.social}>
63+
{config.discord_invite && (
64+
<a
65+
className={styles.discord}
66+
href={`${config.discord_invite}`}
67+
title={`${config.discord} on Discord`}
68+
target='_blank'
69+
rel='noopener noreferrer'
70+
>
71+
<FaDiscord />
72+
</a>
73+
)}
5574
{config.twitter && (
5675
<a
5776
className={styles.twitter}

components/NotionPageHeader.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
import * as React from 'react'
22

33
import * as types from 'notion-types'
4-
import { IoMoonSharp } from '@react-icons/all-files/io5/IoMoonSharp'
5-
import { IoSunnyOutline } from '@react-icons/all-files/io5/IoSunnyOutline'
4+
import /* Ionicons 5 */
5+
{
6+
IoMoonSharp,
7+
IoSunnyOutline
8+
} from 'react-icons/io5'
69
import cs from 'classnames'
710
import { Breadcrumbs, Header, Search, useNotionContext } from 'react-notion-x'
811

components/PageActions.tsx

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
import * as React from 'react'
22

3-
import { AiOutlineRetweet } from '@react-icons/all-files/ai/AiOutlineRetweet'
4-
import { IoHeartOutline } from '@react-icons/all-files/io5/IoHeartOutline'
3+
import /* Ant Design Icons */
4+
{
5+
AiOutlineRetweet
6+
} from 'react-icons/ai'
7+
import /* Ionicons 5 */
8+
{
9+
IoHeartOutline
10+
} from 'react-icons/io5'
511

612
import styles from './styles.module.css'
713

components/PageSocial.module.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,13 @@
7979
border-color: #3b5998;
8080
}
8181

82+
.discord .actionBgPane {
83+
background: #5865f2;
84+
}
85+
.discord:hover {
86+
border-color: #5865f2;
87+
}
88+
8289
.twitter .actionBgPane {
8390
background: #2795e9;
8491
}

components/PageSocial.tsx

Lines changed: 30 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,15 @@ import cs from 'classnames'
55
import * as config from '@/lib/config'
66

77
import styles from './PageSocial.module.css'
8-
8+
import
9+
{ /* Font Awesome Icons */
10+
FaDiscord,
11+
FaYoutube,
12+
FaTwitter,
13+
//FaMastodon,
14+
FaGithub,
15+
FaLinkedin,
16+
} from "react-icons/fa";
917
interface SocialLink {
1018
name: string
1119
title: string
@@ -14,14 +22,30 @@ interface SocialLink {
1422
}
1523

1624
const socialLinks: SocialLink[] = [
25+
config.discord && {
26+
name: 'discord',
27+
href: `${config.discord_invite}`, // Invite URL of the Discord server
28+
title: `${config.discord} on Discord`, // Name of the Discord server
29+
icon: (
30+
<FaDiscord />
31+
)
32+
},
33+
34+
config.youtube && {
35+
name: 'youtube',
36+
href: `https://www.youtube.com/${config.youtube}`,
37+
title: `YouTube ${config.youtube}`,
38+
icon: (
39+
<FaYoutube />
40+
)
41+
},
42+
1743
config.twitter && {
1844
name: 'twitter',
1945
href: `https://twitter.com/${config.twitter}`,
2046
title: `Twitter @${config.twitter}`,
2147
icon: (
22-
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>
23-
<path d='M23.44 4.83c-.8.37-1.5.38-2.22.02.93-.56.98-.96 1.32-2.02-.88.52-1.86.9-2.9 1.1-.82-.88-2-1.43-3.3-1.43-2.5 0-4.55 2.04-4.55 4.54 0 .36.03.7.1 1.04-3.77-.2-7.12-2-9.36-4.75-.4.67-.6 1.45-.6 2.3 0 1.56.8 2.95 2 3.77-.74-.03-1.44-.23-2.05-.57v.06c0 2.2 1.56 4.03 3.64 4.44-.67.2-1.37.2-2.06.08.58 1.8 2.26 3.12 4.25 3.16C5.78 18.1 3.37 18.74 1 18.46c2 1.3 4.4 2.04 6.97 2.04 8.35 0 12.92-6.92 12.92-12.93 0-.2 0-.4-.02-.6.9-.63 1.96-1.22 2.56-2.14z' />
24-
</svg>
48+
<FaTwitter />
2549
)
2650
},
2751

@@ -30,9 +54,7 @@ const socialLinks: SocialLink[] = [
3054
href: `https://github.com/${config.github}`,
3155
title: `GitHub @${config.github}`,
3256
icon: (
33-
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>
34-
<path d='M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22'></path>
35-
</svg>
57+
<FaGithub />
3658
)
3759
},
3860

@@ -41,9 +63,7 @@ const socialLinks: SocialLink[] = [
4163
href: `https://www.linkedin.com/in/${config.linkedin}`,
4264
title: `LinkedIn ${config.author}`,
4365
icon: (
44-
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>
45-
<path d='M6.5 21.5h-5v-13h5v13zM4 6.5C2.5 6.5 1.5 5.3 1.5 4s1-2.4 2.5-2.4c1.6 0 2.5 1 2.6 2.5 0 1.4-1 2.5-2.6 2.5zm11.5 6c-1 0-2 1-2 2v7h-5v-13h5V10s1.6-1.5 4-1.5c3 0 5 2.2 5 6.3v6.7h-5v-7c0-1-1-2-2-2z' />
46-
</svg>
66+
<FaLinkedin />
4767
)
4868
},
4969

@@ -58,16 +78,6 @@ const socialLinks: SocialLink[] = [
5878
)
5979
},
6080

61-
config.youtube && {
62-
name: 'youtube',
63-
href: `https://www.youtube.com/${config.youtube}`,
64-
title: `YouTube ${config.youtube}`,
65-
icon: (
66-
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>
67-
<path d='M10,15L15.19,12L10,9V15M21.56,7.17C21.69,7.64 21.78,8.27 21.84,9.07C21.91,9.87 21.94,10.56 21.94,11.16L22,12C22,14.19 21.84,15.8 21.56,16.83C21.31,17.73 20.73,18.31 19.83,18.56C19.36,18.69 18.5,18.78 17.18,18.84C15.88,18.91 14.69,18.94 13.59,18.94L12,19C7.81,19 5.2,18.84 4.17,18.56C3.27,18.31 2.69,17.73 2.44,16.83C2.31,16.36 2.22,15.73 2.16,14.93C2.09,14.13 2.06,13.44 2.06,12.84L2,12C2,9.81 2.16,8.2 2.44,7.17C2.69,6.27 3.27,5.69 4.17,5.44C4.64,5.31 5.5,5.22 6.82,5.16C8.12,5.09 9.31,5.06 10.41,5.06L12,5C16.19,5 18.8,5.16 19.83,5.44C20.73,5.69 21.31,6.27 21.56,7.17Z' />
68-
</svg>
69-
)
70-
}
7181
].filter(Boolean)
7282

7383
export const PageSocial: React.FC = () => {

components/styles.module.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,10 @@
8989
color: #2795e9;
9090
}
9191

92+
.discord:hover {
93+
color: #5865f2;
94+
}
95+
9296
.twitter:hover {
9397
color: #2795e9;
9498
}

lib/config.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ export const description: string = getSiteConfig('description', 'Notion Blog')
5454
export const language: string = getSiteConfig('language', 'en')
5555

5656
// social accounts
57+
export const discord: string | null = getSiteConfig('discord', null)
58+
export const discord_invite: string | null = getSiteConfig('discord_invite', null)
5759
export const twitter: string | null = getSiteConfig('twitter', null)
5860
export const mastodon: string | null = getSiteConfig('mastodon', null)
5961
export const github: string | null = getSiteConfig('github', null)

lib/site-config.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ export interface SiteConfig {
1010
description?: string
1111
language?: string
1212

13+
discord?: string
14+
discord_invite?: string
1315
twitter?: string
1416
github?: string
1517
linkedin?: string

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
"@fisch0920/use-dark-mode": "^2.4.0",
2929
"@keyvhq/core": "^1.6.9",
3030
"@keyvhq/redis": "^1.6.10",
31-
"@react-icons/all-files": "^4.1.0",
3231
"@vercel/og": "^0.0.19",
3332
"classnames": "^2.3.1",
3433
"date-fns": "^2.28.0",
@@ -47,6 +46,7 @@
4746
"react": "^18.2.0",
4847
"react-body-classname": "^1.3.1",
4948
"react-dom": "^18.2.0",
49+
"react-icons": "^4.7.1",
5050
"react-notion-x": "^6.15.6",
5151
"react-tweet-embed": "^2.0.0",
5252
"react-use": "^17.3.2",

pages/_document.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as React from 'react'
22
import Document, { Head, Html, Main, NextScript } from 'next/document'
33

4-
import { IconContext } from '@react-icons/all-files'
4+
import { IconContext } from 'react-icons'
55

66
export default class MyDocument extends Document {
77
render() {

0 commit comments

Comments
 (0)