2023-08-28 22:07:18 -06:00
|
|
|
export const dynamic = "force-static";
|
|
|
|
|
2023-09-01 20:38:27 -06:00
|
|
|
export default function Home() {
|
2023-04-20 04:20:00 -06:00
|
|
|
return (
|
2023-08-29 18:45:27 -06:00
|
|
|
<div className="flex flex-col text-center items-center justify-center px-4 py-16 gap-4">
|
2023-08-01 13:03:45 -06:00
|
|
|
<h1 className="text-3xl sm:text-6xl font-bold">
|
|
|
|
Sprint{" "}
|
2023-05-31 21:49:25 -06:00
|
|
|
<span className="bg-gradient-to-br from-pink-600 to-cyan-400 bg-clip-text text-transparent box-decoration-clone">
|
|
|
|
Padawan
|
|
|
|
</span>
|
|
|
|
</h1>
|
|
|
|
|
2023-08-01 13:03:45 -06:00
|
|
|
<h2 className="my-4 text-xl sm:text-3xl font-bold">
|
|
|
|
A{" "}
|
2023-05-31 21:49:25 -06:00
|
|
|
<span className="bg-gradient-to-br from-pink-600 to-pink-400 bg-clip-text text-transparent box-decoration-clone">
|
2023-08-01 13:03:45 -06:00
|
|
|
scrum poker{" "}
|
|
|
|
</span>{" "}
|
|
|
|
tool that helps{" "}
|
2023-05-31 21:49:25 -06:00
|
|
|
<span className="bg-gradient-to-br from-purple-600 to-purple-400 bg-clip-text text-transparent box-decoration-clone">
|
2023-08-01 13:03:45 -06:00
|
|
|
agile teams{" "}
|
|
|
|
</span>{" "}
|
|
|
|
plan their sprints in{" "}
|
2023-05-31 21:49:25 -06:00
|
|
|
<span className="bg-gradient-to-br from-cyan-600 to-cyan-400 bg-clip-text text-transparent box-decoration-clone">
|
|
|
|
real-time
|
|
|
|
</span>
|
|
|
|
.
|
|
|
|
</h2>
|
2023-06-05 16:56:28 -06:00
|
|
|
|
2023-08-01 13:03:45 -06:00
|
|
|
<div className="card card-compact bg-secondary text-black font-bold text-left">
|
2023-06-05 16:56:28 -06:00
|
|
|
<div className="card-body">
|
|
|
|
<h2 className="card-title">Features:</h2>
|
|
|
|
<ul>
|
|
|
|
<li>🚀 Real-time votes!</li>
|
2023-08-01 13:03:45 -06:00
|
|
|
<li>🚀 Customizable room name and vote scale!</li>
|
2023-06-05 16:56:28 -06:00
|
|
|
<li>🚀 CSV Reports for every room!</li>
|
|
|
|
<li>🚀 100% free and open-source... forever!</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-09-01 20:38:27 -06:00
|
|
|
</div>
|
2023-05-31 21:49:25 -06:00
|
|
|
);
|
2023-09-01 20:38:27 -06:00
|
|
|
}
|