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
.
Features:
- 🚀 Real-time votes!
- 🚀 Customizable room name and vote scale!
- 🚀 CSV Reports for every room!
- 🚀 100% free and open-source... forever!
>
);
};