feat: initiated plane space (#1801)

This commit is contained in:
guru_sainath 2023-08-08 12:55:42 +05:30 committed by GitHub
parent b6744dcd29
commit 9df0ba6e3a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 184 additions and 0 deletions

7
apps/space/app/page.tsx Normal file
View 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;