mirror of
https://github.com/makeplane/plane.git
synced 2025-12-16 20:07:56 +01:00
24 lines
665 B
TypeScript
24 lines
665 B
TypeScript
|
|
// next
|
||
|
|
import Image from "next/image";
|
||
|
|
// icons
|
||
|
|
import Logo from "public/logo.png";
|
||
|
|
|
||
|
|
const Welcome: React.FC = () => {
|
||
|
|
return (
|
||
|
|
<div className="h-full space-y-4">
|
||
|
|
<div className="h-1/2">
|
||
|
|
<Image src={Logo} height={100} width={100} alt="Plane Logo" />
|
||
|
|
</div>
|
||
|
|
<div className="mx-auto h-1/2 space-y-4 lg:w-2/3">
|
||
|
|
<h2 className="text-2xl font-medium">Welcome to Plane</h2>
|
||
|
|
<p className="text-sm text-gray-400">
|
||
|
|
Plane helps you plan your issues, cycles, and product modules to ship faster.
|
||
|
|
</p>
|
||
|
|
<p className="text-sm text-gray-400">1/5</p>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default Welcome;
|