From 61d58d2b6fc23a21c49cf96fa7d09feea0360a8a Mon Sep 17 00:00:00 2001 From: ridhozhr10 Date: Tue, 14 May 2024 05:18:16 +0700 Subject: [PATCH] update lah tambah projects --- src/app/_components/layout/Header/index.tsx | 3 ++- src/app/projects/page.tsx | 15 +++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 src/app/projects/page.tsx diff --git a/src/app/_components/layout/Header/index.tsx b/src/app/_components/layout/Header/index.tsx index bd2d2aa..2d1b9c2 100644 --- a/src/app/_components/layout/Header/index.tsx +++ b/src/app/_components/layout/Header/index.tsx @@ -7,8 +7,9 @@ import style from "./style.module.scss"; const menuList = [ { label: "About", href: "/about" }, - { label: "Posts", href: "/posts" }, { label: "CV", href: "/cv" }, + { label: "Projects", href: "/projects" }, + { label: "Posts", href: "/posts" }, ]; const Logo = ({ text }: { text?: string }) => ( diff --git a/src/app/projects/page.tsx b/src/app/projects/page.tsx new file mode 100644 index 0000000..8097293 --- /dev/null +++ b/src/app/projects/page.tsx @@ -0,0 +1,15 @@ +import BaseLayout from "../_components/layout/BaseLayout"; + +export const metadata = { + title: "Projects :: Ridho Azhar", +}; + +export default function Project() { + return ( + +
+

Coming Soon

+
+
+ ); +}