first commit
This commit is contained in:
13
frontend/app/home/projects/layout.tsx
Normal file
13
frontend/app/home/projects/layout.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import React from "react";
|
||||
|
||||
export default function ProjectsLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<div className="projects-layout">
|
||||
{children}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
9
frontend/app/home/projects/page.tsx
Normal file
9
frontend/app/home/projects/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { redirect } from "next/navigation";
|
||||
|
||||
export default function Project() {
|
||||
return (
|
||||
<div>
|
||||
<h1>Project</h1>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user