Skip to content

Commit 6195826

Browse files
committed
refactor: update name references and use SITE_NAME constant
- Replace full name with shorter version in README and about pages - Use SITE_NAME constant in Header component for consistent site naming
1 parent ab4fd39 commit 6195826

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next
4848

4949
* * *
5050

51-
Copyright © 2022 by Sutan Gading Fadhillah Nasution
51+
Copyright © 2022 by Gading Nasution

src/contents/about/en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ I care a lot about performance and SEO, so I’m showcasing a live website perfo
4949
---
5050

5151
<div className="text-center italic">
52-
Best regards, **Sutan Gading Fadhillah Nasution**.
52+
Best regards, **Gading Nasution**.
5353
</div>

src/contents/about/id.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ Saya lumayan peduli sama *performance* dan *SEO*, jadi saya tampilkan laporan pe
4949
---
5050

5151
<div className="text-center italic">
52-
Salam hangat, **Sutan Gading Fadhillah Nasution**.
52+
Salam hangat, **Gading Nasution**.
5353
</div>

src/packages/components/layouts/Header/Header.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
'use client';
22

3+
import { SITE_NAME } from '@/configs/sites';
34
import cn from '@/designs/utils/cn';
45
import NextLink from '@/packages/components/base/Navigations/NextLink';
56

@@ -27,7 +28,7 @@ export default function Header() {
2728
'transition-all duration-300 hover:bg-white/80 hover:text-black hover:scale-105'
2829
])}
2930
>
30-
Gading&apos;s Hideout
31+
{SITE_NAME}
3132
</NextLink>
3233
</div>
3334

0 commit comments

Comments
 (0)