You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
426 B
16 lines
426 B
import InfoProgressCard from "@/components/ui/info-progress-card";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main className="flex min-h-screen items-start justify-center px-3 py-6">
|
|
<div className="w-full max-w-[345px]">
|
|
<InfoProgressCard
|
|
title="persenoal info"
|
|
requiredLabel="(Required)"
|
|
estimate="30 min"
|
|
progress={46}
|
|
/>
|
|
</div>
|
|
</main>
|
|
);
|
|
}
|