Skip to content

Commit

Permalink
update lah tambah projects
Browse files Browse the repository at this point in the history
  • Loading branch information
ridhozhr10 committed May 13, 2024
1 parent 128817a commit 61d58d2
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/_components/layout/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 }) => (
Expand Down
15 changes: 15 additions & 0 deletions src/app/projects/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import BaseLayout from "../_components/layout/BaseLayout";

export const metadata = {
title: "Projects :: Ridho Azhar",
};

export default function Project() {
return (
<BaseLayout>
<main>
<h1 className="text-5xl">Coming Soon</h1>
</main>
</BaseLayout>
);
}

0 comments on commit 61d58d2

Please sign in to comment.