Skip to content

Commit

Permalink
export empty component to resolve build error
Browse files Browse the repository at this point in the history
  • Loading branch information
Raghuboi committed Mar 28, 2024
1 parent d8027af commit 53f0af5
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/app/projects/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
interface Props {}

const Page: React.FC<Props> = () => {
return (
<div className="h-[40rem] w-full flex justify-center items-center overflow-hidden px-[3rem]">
<h1>Coming soon!</h1>
</div>
);
};

export default Page;

0 comments on commit 53f0af5

Please sign in to comment.