import { type NextPage } from "next";
import Head from "next/head";
const Home: NextPage = () => {
return (
<>
Sprint Padawan
>
);
};
export default Home;
const HomePageBody: React.FC = () => {
return (
<>
Sprint{" "}
Padawan
A{" "}
scrum poker{" "}
{" "}
tool that helps{" "}
agile teams{" "}
{" "}
plan their sprints in{" "}
real-time
.
>
);
};