Skip to content

Commit 4887e9f

Browse files
authored
Merge branch 'main' into patch-1
2 parents cad4c15 + 1089edb commit 4887e9f

File tree

5 files changed

+16
-2
lines changed

5 files changed

+16
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ Internationalization support - [Template with i18n](https://tailwind-nextjs-star
4444
- [thetalhatahir.com](https://www.thetalhatahir.com) - Talha Tahir's personal blog. Added article thumbnails, linkedIn card, Beautiful hero content, technology emoticons.
4545
- [homing.so](https://homing.so) - Homing's personal blog about the stuff he's learning ([source code](https://github.com/hominsu/blog))
4646
- [zS1m's Blog](https://contrails.space) - zS1m's personal blog for recording and sharing daily learning technical content ([source code](https://github.com/zS1m/nextjs-contrails))
47-
- [dariuszwozniak.net](https://dariuszwozniak.net/) - Software development blog
48-
- [Terminals.run](https://terminals.run) - Blog site for some thoughts and records for life and technology.
47+
- [dariuszwozniak.net](https://dariuszwozniak.net/) - Software development blog ([source code](https://github.com/dariusz-wozniak/dariuszwozniak.net-v2))
48+
- [dreams.plus](https://dreams.plus) - Blog site for some thoughts and records for life and technology.
4949
- [francisaguilar.co blog](https://francisaguilar.co) - Francis Aguilar's personal blog that talks about tech, fitness, and personal development.
5050
- [Min71 Dev Blog](https://min71.dev) - Personal blog about Blockchain, Development and etc. ([source code](https://github.com/mingi3442/blog))
5151
- [Bryce Yu's Blog](https://earayu.github.io/) - Bryce Yu's personal Blog about distributed system, database, and web development. ([source code](https://github.com/earayu/earayu.github.io))
@@ -71,6 +71,7 @@ Internationalization support - [Template with i18n](https://tailwind-nextjs-star
7171
- [bmacharia.com](https://bmacharia.com/) - Benson Macharia's technical blog about Cybersecurity and IT Risk Management.
7272
- [armujahid.me](https://armujahid.me/) - Abdul Rauf's personal blog about tech and random stuff.
7373
- [leohuynh.dev](leohuynh.dev) - 🇻🇳 Leo's dev blog – stories, insights, and ideas. Add `/snippets`, `/books` pages, add `ProfileCard`, `CareerTimeline` components and many more.
74+
- [OpenSats Blog](https://opensats.org/blog) - A 501(c)(3) public charity which aims to sustainably fund free and open-source projects. ([source code](https://github.com/OpenSats/website))
7475

7576
Using the template? Feel free to create a PR and add your blog to this list.
7677

components/Footer.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ export default function Footer() {
1616
<SocialIcon kind="x" href={siteMetadata.x} size={6} />
1717
<SocialIcon kind="instagram" href={siteMetadata.instagram} size={6} />
1818
<SocialIcon kind="threads" href={siteMetadata.threads} size={6} />
19+
<SocialIcon kind="medium" href={siteMetadata.medium} size={6} />
1920
</div>
2021
<div className="mb-2 flex space-x-2 text-sm text-gray-500 dark:text-gray-400">
2122
<div>{siteMetadata.author}</div>

components/social-icons/icons.tsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,3 +93,12 @@ export function Instagram(svgProps: SVGProps<SVGSVGElement>) {
9393
</svg>
9494
)
9595
}
96+
97+
export function Medium(svgProps: SVGProps<SVGSVGElement>) {
98+
return (
99+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...svgProps}>
100+
<title>Medium</title>
101+
<path d="M13.54 12a6.8 6.8 0 01-6.77 6.82A6.8 6.8 0 010 12a6.8 6.8 0 016.77-6.82A6.8 6.8 0 0113.54 12zM20.96 12c0 3.54-1.51 6.42-3.38 6.42-1.87 0-3.39-2.88-3.39-6.42s1.52-6.42 3.39-6.42 3.38 2.88 3.38 6.42M24 12c0 3.17-.53 5.75-1.19 5.75-.66 0-1.19-2.58-1.19-5.75s.53-5.75 1.19-5.75C23.47 6.25 24 8.83 24 12z" />
102+
</svg>
103+
)
104+
}

components/social-icons/index.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import {
99
Mastodon,
1010
Threads,
1111
Instagram,
12+
Medium,
1213
} from './icons'
1314

1415
const components = {
@@ -22,6 +23,7 @@ const components = {
2223
mastodon: Mastodon,
2324
threads: Threads,
2425
instagram: Instagram,
26+
medium: Medium,
2527
}
2628

2729
type SocialIconProps = {

data/siteMetadata.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ const siteMetadata = {
2020
linkedin: 'https://www.linkedin.com',
2121
threads: 'https://www.threads.net',
2222
instagram: 'https://www.instagram.com',
23+
medium: 'https://medium.com',
2324
locale: 'en-US',
2425
// set to true if you want a navbar fixed to the top
2526
stickyNav: false,

0 commit comments

Comments
 (0)