Files
pp-tcms/frontend/app/page.tsx
2024-02-17 09:49:11 +09:00

31 lines
951 B
TypeScript

import { Link, button as buttonStyles } from "@nextui-org/react";
import { title, subtitle } from "@/components/primitives";
export default function Home() {
return (
<section className="flex flex-col items-center justify-center gap-4 py-8 md:py-10">
<div className="inline-block max-w-lg text-center justify-center">
<h1 className={title({ color: "pink" })}>Open Source&nbsp;</h1>
<h1 className={title()}>Test Case Management Tool&nbsp;</h1>
<br />
<h2 className={subtitle({ class: "text-inherit mt-4" })}>
Integrate and manage all your software testing.
</h2>
</div>
<div className="flex gap-3">
<Link
href="/projects"
className={buttonStyles({
color: "primary",
radius: "full",
variant: "shadow",
})}
>
Create first test project
</Link>
</div>
</section>
);
}