feat: initiated plane space (#1801)
This commit is contained in:
parent
b6744dcd29
commit
9df0ba6e3a
16 changed files with 184 additions and 0 deletions
9
apps/space/app/[workspace_project_slug]/page.tsx
Normal file
9
apps/space/app/[workspace_project_slug]/page.tsx
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import React from "react";
|
||||
|
||||
const WorkspaceProjectPage = () => (
|
||||
<div className="relative w-screen h-screen flex justify-center items-center text-5xl">
|
||||
Plane Workspace project Space
|
||||
</div>
|
||||
);
|
||||
|
||||
export default WorkspaceProjectPage;
|
||||
12
apps/space/app/layout.tsx
Normal file
12
apps/space/app/layout.tsx
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
// root styles
|
||||
import "styles/globals.css";
|
||||
|
||||
const RootLayout = ({ children }: { children: React.ReactNode }) => (
|
||||
<html lang="en">
|
||||
<body className="antialiased w-100">
|
||||
<main>{children}</main>
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
|
||||
export default RootLayout;
|
||||
7
apps/space/app/page.tsx
Normal file
7
apps/space/app/page.tsx
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
import React from "react";
|
||||
|
||||
const HomePage = () => (
|
||||
<div className="relative w-screen h-screen flex justify-center items-center text-5xl">Plane Space</div>
|
||||
);
|
||||
|
||||
export default HomePage;
|
||||
Loading…
Add table
Add a link
Reference in a new issue