Skip to content

Commit fd7df6e

Browse files
committed
Rebranding and navigator order update
1 parent 8bef3b0 commit fd7df6e

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

package-lock.json

Lines changed: 13 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/app/components/Navigator.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { useState, useEffect } from "react";
66
export default function Navigator() {
77
const [show, setShow] = useState(false);
88
const [scrolled, setScrolled] = useState(false);
9-
const navOptions = ["Projects", "Blog", "About"];
9+
const navOptions = ["About", "Projects", "Blog"];
1010
useEffect(() => {
1111
const handleScroll = () => {
1212
if (window.scrollY > 1) {
@@ -40,7 +40,7 @@ export default function Navigator() {
4040
className="text-md text-iceBlue font-brand [transition:0.5s] hover:[text-shadow:#c3f8ff_0px_0_15px] hover:[transition:0.5s]"
4141
href="/"
4242
>
43-
RTN
43+
NK
4444
</Link>
4545

4646
<div className="hidden md:flex space-x-8 items-center">

0 commit comments

Comments
 (0)