© {currentYear} AramJonghu. All rights reserved.
-
-
- Check out the website repository here:
-
-
-
-
-
+
+ {iconLinks.map((icon) => (
+
+
+
+ ))}
);
diff --git a/frontend/src/components/Header.tsx b/frontend/src/components/Header.tsx
index 349889a..bfc8ff2 100644
--- a/frontend/src/components/Header.tsx
+++ b/frontend/src/components/Header.tsx
@@ -1,11 +1,6 @@
import { useState } from "react";
import Aku from "../assets/images/aku.png";
-interface NavItem {
- label: string;
- url: string;
-}
-
interface PageItem {
label: string;
url: string;
@@ -24,16 +19,9 @@ export default function Header({ theme }: HeaderProps) {
const { theme: currentTheme, toggleTheme } = theme;
const [menuOpen, setMenuOpen] = useState(false);
- const navItems: NavItem[] = [
- { label: "Nextcloud", url: "https://nextcloud.aramjonghu.dev" },
- { label: "Navidrome", url: "https://music.aramjonghu.dev" },
- { label: "Forgejo Git", url: "https://git.aramjonghu.dev" },
- { label: "Omnisearch", url: "https://xng.aramjonghu.dev" },
- { label: "Gitea zach-dev", url: "https://git.zach-dev.cc" },
- ];
-
const pageItems: PageItem[] = [
{ label: "Stream", url: "/stream" },
+ { label: "Portfolio", url: "/portfolio" },
{ label: "Contact", url: "/contact" },
];
@@ -81,17 +69,6 @@ export default function Header({ theme }: HeaderProps) {
/>
-