beta/app/page.tsx
Christopher Arraya 53c3cd3d6e initial commit
2023-11-04 14:57:25 -04:00

10 lines
266 B
TypeScript

import { WorkspacesSidebar } from "@/components/workspaces";
export default function Home() {
return (
<div className="flex flex-col min-h-screen w-screen justify-center items-center">
<h1>Skalara, Inc.</h1>
<WorkspacesSidebar />
</div>
);
}